Posts: 5,935
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
Wow, you weren't kidding. It is a mess in Firefox!
Simply put, the reason that your page doesn't render correctly in FF is because the code for it is a complete and utter mess.
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.scottish-studio.com&charset=%28detect+automatically%29&doct ype=Inline&group=0
A validator can't even get through it because it hasn't got a doctype declared for it!
Not only that, your layout is tabular and breaks even the most basic rules of accessibility. You don't use proper alt attributes (lots of spacer gifs), you've got fixed font sizes going on, you're using a grey that is hard to read, and my favorite alt attribute:
Code:
alt="** PLEASE DESCRIBE THIS IMAGE **"
Not only that, why's this site in a frame? It makes no sense.
You just grabbed a copy of Dr*amw*av*r and put something together that looked pretty on your screen as quickly as you possibly could, and now you're finding out what happens when you do that.
You're better off redoing this site from scratch than trying to fix the myriad of errors that you've created, but before you do, really learn about things like accessibility (font sizing, alt attributes, etc.) and the joys of tableless layouts.
|