Well, hmm - it actually does drop all the way down if there's room for it. On most people's monitors (1024x768 I'm guessing in a .edu setting) full screen or nearly full screen isn't enough. Although, if you scroll the window so that the trigger is nearer to the top, it works OK.
If you make the drop down wider, it should fit on more screens. From the halfmoontabs.css file:
Code:
.dropmenudiv_e{
position:absolute;
top: 0;
border: 1px solid #657f27; /*THEME CHANGE HERE*/
border-width: 0 1px;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: #eff8d2;
width: 200px;
visibility: hidden;
}
Make that like 350px or so.
Or, if you have others that you want to be that narrow, you can probably specify it inline on the page:
Code:
<!--1st drop down menu -->
<div id="dropmenu1" class="dropmenudiv_e" style="width:350px;">
<a href="advisement.php">Academic Advisement and Counseling</a>
<a href="#">Academic Records and Transcripts Required for Attendance & Graduation</a>
<a href="#">Course Registration</a>
<a href="#">Online Registration</a>
<a href="#">Class Schedule Changes <br><font size="1">(Drop/Add procedure)</font></a>
<a href="#">Evaluation Process of Coursework from Other Colleges/Universities</a>
<a href="#">Withdrawal Policy at Danville Area Community College</a>
<a href="#">Tuition and Course Fee Refunds</a>
<a href="#">Course Attendance</a>
<a href="#">Student Records/Accounts <font size="1">(Schedules, Bill Statements & Grade Reports) </font></a>
<a href="#">College Catalog</a>
<a href="#">Degree Audits</a> </div>
Below are some other thoughts I had earlier:
We could edit the script so that it drops down no matter what, but then there would be unseen items.
Or we could perhaps add code so that when the trigger is activated, the window scrolls to it, thus giving most folks room enough for it to drop down.
Or you could list less items. Perhaps make two triggers, one for registration and another for advisement, each of which could presumably have less items in its drop down.
Or you could use a different menu like:
http://www.dynamicdrive.com/dynamici...anylinkcss.htm
which allows for columns in the drop down. That way you wouldn't need so much vertical space.
Bookmarks