View Full Version : Drop down menu w/description
Burdman
08-05-2005, 10:32 PM
I am trying to use Drop down menu w/description and I have a question. I am trying to set on a dark backround, and can not figure out how to change font color of the description text that shows up beneath the submit button. Is there a way to change the font color from black to white?
jscheuer1
08-06-2005, 05:49 AM
In the HTML part of this menu:
<span id="textcontainer1" align="left" style="font:italic 13px Arial">
</span>Use the inline style attribute of the span to control that. Best to set a background color as well (the user otherwise may see a different background color than you intend), ex:
<span id="textcontainer1" align="left" style="font:italic 13px Arial;color:white;background-color:black;">
</span>You may use any valid HTML color names for the parts in green or hex values:
#0F0F0F
or rgb values:
rgb(100,100,075)
Powered by vBulletin® Version 4.2.2 Copyright © 2019 vBulletin Solutions, Inc. All rights reserved.