G'day > I don't think I've disabled images, but I don't use Firefox very much since it's > on my wife's machine. Where would I look to find out? It almost sounds that > like that's the problem. It loads fine for you??
I can't help you on browser settings, nor is that a web standards issue :-) Refer to http://texturizer.net/firefox/ for help The only possible problems I see with the code are that: (A) your logo image is missing a space between the class and src attributes (B) the order in which you specify the background position (right top) could confuse some browsers (C) The absolute url for the background may be causing problems (though it shouldn't). Try: background: #000 url(img/fog_lead2.jpg) no-repeat right top Or given the content box is the same size as the image, you could just have: background: #000 url(img/fog_lead2.jpg) ... Or ... background-image: url(img/fog_lead2.jpg) Like I said, it displays fine in Firefox on my PC Regards -- Bert Doorn, Better Web Design www.bwdzine.com Fast-loading, user-friendly websites ****************************************************** The discussion list for http://webstandardsgroup.org/ Proud presenters of Web Essentials 04 http://we04.com/ Web standards, accessibility, inspiration, knowledge To be held in Sydney, September 30 and October 1, 2004 See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
