views:

108

answers:

1

See Year's TAB 2009/2010 of this page in IE7 than firefox

Tab's styling not applying in Firefox but applying in IE

http://tinyurl.com/yarooc4

I want to apply same style (Which is showing in IE7) in FF too.

Update:

problem fixed now but through !important

+2  A: 

The styling works in IE 7 but not in IE 8 or Firefox.

In the file inner-pages.css the style #RNSViewIssue is missing the closing bracket, which causes the rest of the file to be ignored.

In the file main.css the style #share-price-calculatorSharePriceComparatorSectionContainer (and co.) has a starting parenthesis instead of a starting bracket, causing the rest of the file to be ignored.

There are plenty of other errors in the css files, but those are the ones that are directly responsible for your problems.

In Firefox open the error console and then browse to the page, and it will give you a list of all errors in the css files.

Guffa
@Guffa - ok checking thanks. but it's strange why it's showing fine in IE7. although I've solved problem with !important.
metal-gear-solid
Thanks again for firefox error console suggestion
metal-gear-solid
Obviously IE 7 has some other way of handling syntax errors in CSS, so that the result differs. That is probably because IE 8 (and Firefox) supports some new CSS standards that IE 7 doesn't.
Guffa