You're welcome! Lookin' good on the site...but you have a problem with your style codes for the hyperlinks...with the blue background the two shades of white work fine, but in the blogbody they aren't visible! I'm writing a tip on this for my new tips blog (which alas is not ready yet), but in essence you add a second set of link styles:
CODE
your existing link styles:
A { color: #336666; text-decoration: none;}
A:link { color: #FFFFFF; text-decoration: none; }
A:visited { color: #FFFFFF; text-decoration: none; }
A:active { color: #FFFFFF; }
A:hover { color: #999999; }
add this section (and change to suit):
div.bodylink { background-color:transparent; color:black; font-size:12px }
.bodylink a:link { color:red; text-decoration:none }
.bodylink a:visited { color:maroon; text-decoration:none }
.bodyink a:hover { color:red; text-decoration:underline }
...then change the specs to suit your needs (color, bold, etc.). Then place this pair of tags around the code you want to inherit the alternate link styles (such as your id="content" section):
CODE
<div class="bodylink">
</div>
This is one way to do this (there are others), but it's a start. If you're unsure about what each of the link states are for (active, hover, visited, etc.) just visit any of the css help sites out there, such as
this site.Or, you could just alter your link styles so that they work with both backgrounds.