Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Font awesome icons not clickable

I am having a problem with font-awesome icons. When you click on the little plus it is fine however if you click on the rest of the button it will not take you to the link.

<div class="jumbotron">
<p>
    <button type="button" class="btn btn-default pull-right">
        <a href="google.com"> <i class="fa fa-plus" title="Edit"></i> </a></button>
</p>

http://jsfiddle.net/py7vA/217/

How would I fix this?

like image 625
user3080600 Avatar asked Mar 25 '17 17:03

user3080600


1 Answers

Don't put an A tag inside BUTTON. It's wrong. Since you are using Bootstrap you can assign the same btn classes to A too.

<a href="google.com" class="btn btn-default pull-right" title="Edit"> <i class="fa fa-plus"></i> </a>
like image 99
Ibrahim Avatar answered Oct 10 '22 13:10

Ibrahim