View Single Post
Old 2005-11-26, 08:46 AM   #11
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
I shouldn't post before morning coffee. lol

This is the problem. You have an opening comment tag at the beginning of your stylesheet but you didn't close it so the whole page is inside of a comment tag.
<style type="text/css">
<!-- H1 {word-spacing:.5em; font: normal 1 "Veranda, Arial"}
a:link {text-decoration: none;}
a:active {text-decoration: none;}
a:visited {text-decoration: none;}
A:hover {text-decoration:overline & underline; color: #FF0000;}
</style>

Should be
<style type="text/css">
<!-- H1 {word-spacing:.5em; font: normal 1 "Veranda, Arial"}
a:link {text-decoration: none;}
a:active {text-decoration: none;}
a:visited {text-decoration: none;}
A:hover {text-decoration:overline & underline; color: #FF0000;}
-->
</style>

Notice the --> right before the closing style tag.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote