View Full Version : HTML Select tag no scroll
hosdank
08-11-2008, 07:58 PM
I have an HTML Select tag which I set to not dropdown. Is there a way I can also remove the scroll bar, or at least color it? Thanks :)
I don't think that there is a way to remove it, or color it infact, although search a little on google, that may help you.
hosdank
08-11-2008, 08:06 PM
yeah, thanks! :)
Happy to help anytime, if you do find a solution for this, post it in this thread so when people search the forums for the same questions that you ask they can see the answer instead of having to create a new thread.
TheJoshMan
08-11-2008, 11:40 PM
Just curious... but what would be the logic behind using a "select box" if you are going to disable it from performing it's core function?
rangana
08-12-2008, 01:15 AM
You can however make use of the multiple attribute:
<select multiple="multiple">
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
<option>Values</option>
</select>
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.