Results 1 to 2 of 2

Thread: Drop down menu w/description

  1. #1
    Join Date
    Aug 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Drop down menu w/description

    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?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    In the HTML part of this menu:
    Code:
    <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:
    Code:
    <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)
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •