<button type="submit" value="Log in" class="btn btn-lg btn-link" style="color: grey;"><i class="glyphicon glyphicon-log-in" style="font-size: xx-large"></i></button>
I added inline style to change the button style property. Now it won’t change opacity when I hover my mouse pointer over it. Is there a way to specify that ? I am using twitter bootstrap 3.0
4
Answers
I would make my own css class that uses :hover and then set the opacity property of the html element like so:
You could try adding that feature in your CSS
But this specifies that all buttons opacity will change to 50% when you hover and I’m not sure if that helps!
You need to add opacity to .btn-link so this will not effect all buttons in your website
Inline method
This will works for you..