How to change the text colour of a button??

0
Hi Is there any way to change the text color of a button?  I have tried numerous methods to change the Font colour of buttons. But non worked. I have used in the custom css file under btn Font-color: #000; and also tried Text-color: #000; What am I missing? What is the best way to do this? I need to change the button text color to black. Using the Monte Black theme.. Please help
asked
2 answers
0

Hi Dilan,

 

Marc gives the correct css to change the text color.

Just on a side note, sometimes the style you put in might be overwritten by another css command in which case you need to add

!important

color: #000 !important;

-Andrej

answered
2

You should just use:

 

color: #000;

 

For any other style do not use camelcase, use all caps or all lowercase.

answered