Most of the positioning problems with the drop down menus can be solved by making sure the HTML for the drop down DIVs themselves is outside any container tag on the page other than the BODY. So in your case, try moving all the drop down DIVs to the bottom of your page, just above the "</body>" tag:
Code:
<!--Services drop down menu -->
<div style="height: auto; overflow: hidden; visibility: hidden; left:
-1000px; top: -1000px;" id="dropmenu1" class="dropmenudiv">
<a href="http://shawitservices.com/services.php">All Services</a>
<a href="http://shawitservices.com/melbourne-laptop-repairs/">Laptop
Repairs</a>
<a href="http://shawitservices.com/melbourne-computer-repairs/">Computer
Repairs</a>
<a href="http://shawitservices.com/melbourne-laptop-lcd-screen-repairs/">Laptop
Screen Repairs</a>
<a href="http://shawitservices.com/services.php#addserv">Additional
Services</a>
</div>
<!--Info drop down menu -->
<div style="height: auto; overflow: hidden; visibility: hidden; left:
-1000px; top: -1000px;" id="dropmenu2" class="dropmenudiv">
<a href="http://shawitservices.com/info.php">General Info</a>
<a href="http://shawitservices.com/viruses.php">Viruses</a>
<a href="http://shawitservices.com/maintenance.php">Regular Maintenance</a>
<a href="http://techrelatedrants.blogspot.com/">Our Blog</a>
</div>
<!--Contact drop down menu -->
<div style="height: 41px; overflow: hidden; visibility: hidden; left:
-1000px; top: -1000px;" id="dropmenu3" class="dropmenudiv">
<a href="http://shawitservices.com/contact.php">Contact Information</a>
<a href="mailto:info@shawitservices.com">Email Us</a>
<a href="msnim:chat?contact=info@shawitservices.com">Chat To Us Live</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
</body>
Bookmarks