What you could in the event that the stylesheet does not load is the following:
Code:
-stylesheet entry-
span#oops { display: none; }
-html entry-
<span id="oops">The stylesheet was not properly loaded for
this page. This could be due to a high traffic load, or a
browser not supporting current CSS standards. Click <a
href="#">here</a> to reload the page, or simply hit CTRL-F5
to refresh.</span>
What that does is NOT show that text if the stylesheet was properly loaded and rendered. If the stylesheet wasn't, then that text is clearly displayed wherever you may place it. Another option to look as is whether or not the correct filetype is being passed to all browsers. I have seen some servers that are not setup correctly; a quick easy fix to this is simply to open up .htaccess and input "Addtype text/css css" on an open line.
Bookmarks