Looking at your tabs on this page, the only problem I see actually is with the HTML/ CSS mismatch (no script errors). Here's your HTML for the drop down DIVs themselves:
Code:
<!--1st drop down menu -->
<div id="dropmenu1" class=".dropmenudiv_b">
<a href="series.html">Series</a>
<a href="anthologies.html">Anthologies</a>
<a href="novels.html">Novels</a>
<a href="reviews.html">Reviews</a>
</div>
<!--2nd drop down menu -->
<div id="dropmenu2" class="dropmenudiv">
<a href="bio.html">Biography</a>
<a href="faq.html">FAQ</a>
<a href="contact.html">Contact</a>
</div>
<!--3rd drop down menu -->
<div id="dropmenu3" class="dropmenudiv">
<a href="contest.html">Contest</a>
<a href="photos.html">Photo Gallery</a>
<a href="contact.html">Contact</a>
</div>
The problem is highlighted in red. The first CSS class value is invalid, while the other two are incorrect as well, since in your CSS, the CSS class name you're styling is "dropmenudiv_b". Change the values above in red to correctly match that CSS class name.
Bookmarks