CSS Example from Codex (Increase font-size) Not Working
Problem in Detail:
There here is an example of Custom CSS cut and pasted from Custom CSS
/*Increases size of text within steps*/ .stepLines { font-size: 130%; }
Trouble: It does not work for me. Text remains at 14px no matter what.
One thing I noticed, the code on the site seems to have class step-lines and not stepLines
however,
/*Increases size 'of' text within steps*/ .step-lines { font-size: 130%; }
does not work either.
Adding !important did not make a difference. (I know, lazy, but in testing...)
Any ideas? Was the font classes implementation changed?
Is this a good question?