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:
<!--1st drop down menu -->
<div id="dropmenu1" class="dropmenudiv" style="width: 110px;">
<a href="http://www.iphoneil.net/?cat=155">המקור של האתר</a>
<a href="http://www.iphoneil.net/?p=8973">מדריך יצירת סורס</a>
</div>
<!--2nd drop down menu -->
<div id="dropmenu2" class="dropmenudiv" style="width: 110px;">
<a href="http://www.iphoneil.net/?p=10766">שליחת כתבה לאתר</a>
<a href="http://www.iphoneil.net/?p=10766">שליחת תוכן למקור</a>
</div>
<!--3nd drop down menu -->
<div id="dropmenu3" class="dropmenudiv" style="width: 130px;">
<a href="http://www.iphoneil.net/?p=10773">הורדת קושחה</a>
<a href="http://www.iphoneil.net/?p=10783">רשימת סורסים קהילתיים</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
</body>
Bookmarks