Log in

View Full Version : AnyLink Drop Down Menu



basils57
03-20-2006, 11:45 AM
http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm

Hello folks, I'm a newbie to all of this so please understand if my question is basic.
Can someone please advise how I can change the color of the blue text within the dropdown menu box with the above? I don't seem to see any reference to it.

jscheuer1
03-20-2006, 03:06 PM
That's because there is none. However, using the css style you can easily add one:


#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
color:red;
}

basils57
03-20-2006, 08:17 PM
Thanks for that John - I'm learning!