Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
You could use CSS's overflow property in combination with the height property on the drop down menu to add a scrollbar. Inside chrome.css for example, make the following change:
Code:
.dropmenudiv{
"
"
height: 300px;
max-height: 300px;
overflow-y: scroll;
}
Note that overflow-y is not supported in earlier versions of Firefox, so you may want to resort to using overflow instead.
Bookmarks