When I view my site in FF it is perfectly fine. Then when I look at it in IE it just shows all of my CSS instead of the site. When I take out the CSS it just shows blank white page and not my text or graphics. Why is it doing this? PM me and ill send you the link to the site.
You better upload it to a temporary location and give us the link. it'll be solved within seconds !!!
I forgot the last closing > but I got that fixed and the CSS isnt showing anymore. I still have the problem of it just showing a blank page when I view it in IE.
you have no close tage </title> ( you have only open tag <title>) your first line should add open tag <html> ps : I found your page redirect to http://showfosho.com/error/ Code (markup):
in additional I found error on css color value, "000000" is not color value but "#000000" is color value , you must enter prefix "#" to all color value.
You cannot expect any consistent rendering when your markup and css are invalid. Using valid html and css is basic. Until you correct your syntax errors, it is a waste of time to attempt debugging. See: html validator css validator cheers, gary
Ok its working now, thanks. I just didnt expect that because it worked fine in FF. I am aware of that and I just went through it fast because I dont need it to change anything. Thanks for your help.
Basically you can never rely on a browser to tell you if your code is good. Firefox should get a whippin' for correctly showing your page with what the validator would consider an unclosed head (no title or unclosed title makes validator think there's no closed head). Browsers try to guess what you mean instead of giving the error we all wish they would. So it might look like everything's cool and then some other browser obeys a rule and the site looks like crapola. Safari and Opera often do this for me (before I send a changed site back to the validato), while FF and IE often let a lot of crap go.