Skip to content Skip to sidebar Skip to footer

How To Override Link Color And Margins/padding On Buttons In Twitter Bootstrap?

First post here. I'm trying to override the link colors for Bootstrap buttons, but I can't get it to work. I actually got the background color to change, but I can't get the link c

Solution 1:

To change the text colour of the BootStrap buttons, you'll actually have to target the <a> element inside of the .btn. For example:

.btna{
    color:#000;
}

This would change button link text to black. Hope this helped, let me know if you have any questions!

Post a Comment for "How To Override Link Color And Margins/padding On Buttons In Twitter Bootstrap?"