It appears to be working to me...
The problem is you are applying styles to that class multiple times using different selectors.
On line 1559 of your Style.css file you have this:
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {font-size:13px; line-height:1em!important; margin:0 0 6px 0!important; padding:0!important; clear:both; filter:alpha(opacity=60); -moz-opacity:0.6; -khtml-opacity: 0.6; opacity: 0.6}
On line 1570 of your Style.css file you have this:
.gform_wrapper .gf_progressbar_title {font-size: 16px;}
The problem is because of how you are defining it online 1559 at a font-size of 13px it is overriding your definition on line 1570.
You've already defined it on line 1559 so just change font-size: 13px; to what you want it to be. When I view it in Chrome it has a font size of 13px which is what your stylesheet is telling it to do.
The CSS you have setting it at 16px isn't being applied because it's being overridden because of how you have declared it previously.
Remove the second instance of it and just change the first to the correct font size.
Posted 13 years ago on Friday February 18, 2011 |
Permalink