<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”> is your doctype but your site is pretty far from being strict… you are using TD background color (btw that’s whats screwing up safari) and a bunch of other things that wont validate …
Thanks very much… I am obviously new at this I never knew that site even exisisted! Not only did you help me with this problem, this will help solve many more in the future. One question though… I just grabbed this doctype from some random page (i know…lol) what do you think is a good place to learn about doctypes? Thanks again.
Quite frankly, the only two doctypes you will need to worry about is strict and transitional xhtml. You were using strict, which is the most “hardcore” of the two. very unforgiving, but also very clean and functional. Transitional allows you some more freedom…
google “xhtml doctypes” and you’ll see the ones you have to pick from.