Click to See Complete Forum and Search --> : Firefox not displaying background image properly; IE does though.


Raller
01-07-2008, 12:12 PM
Hi guys

I am unable to see why the site i am working on does not display properly in FF. The horizontal menu bar background image shows up perfectly in IE but does not display for some reason in FF. I tried having a look but i guess i need fresh eyes to spot the mistake.

Click here (http://www.bakerandassociatesins.com/) to go to the site.

Thanks in advance for anyone who can help me!

TJ111
01-07-2008, 12:46 PM
Your header is floated left, and the menu isn't, so its appearing underneath your header logo apparently. Changing the following in Firebug fixed it for me:


.chromestyle ul{
border: 1px solid #BBB;
width: 100%;
background: url(chromebg2test.gif) center center repeat-x; /*THEME CHANGE HERE*/
padding: 7px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
clear:both;
}

Raller
01-07-2008, 03:28 PM
That fixed it all up! You're unbelievable man!

Your header is floated left, and the menu isn't, so its appearing underneath your header logo apparently. Changing the following in Firebug fixed it for me:


.chromestyle ul{
border: 1px solid #BBB;
width: 100%;
background: url(chromebg2test.gif) center center repeat-x; /*THEME CHANGE HERE*/
padding: 7px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
clear:both;
}