Reputation: 156
http://iamsinc.com/blog/new-producer-bonus/
For some reason Firefox 17.0.1 on my Windows 7 machine is ignoring the font-weight of the td elements. It should be normal. This works fine in Chrome, IE 7 8, & 9, but not in FF. I have also tested it on an XP machine running 17.0.1 and it works fine. The font-weight should be normal, not bold. In the second box down ($300k level), the font-weight is showing up as bold on Win 7 FF 17.0.1 which pushes the pictures outside of the box.
I have even tried reducing the font-weight waaay down and it has not effect on the problematic FF browser
Does anybody have a solution or even a work-around? I hate to make the pictures all smaller just to work around this.
Upvotes: 1
Views: 263
Reputation: 256
The one reason could be that some other rule is making font-weight:normal
Just try using inline style with !important... If it will work then it means that some other rule have high priority...
Check firebug to find it
Upvotes: 0
Reputation: 32182
Now add This rule in your css
.npbbox td {
font-weight: bold;
}
Upvotes: 1
Reputation: 41
Maybe is your browser cache, try to clean it. I have Windows 7 and Firefox 17.0.1 and font-weight is normal.
Upvotes: 1