Results 1 to 4 of 4

Thread: Font color in Java CSS

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

    Default Font color in Java CSS

    I am trying to modify the css in the Switch menu script on Dyanamic Drive so the submenu items which are hyperlinks are white. I am using a blue background and have the main menu items in white but the submenu items show up in blue. I have tried color: #FFFFFF and font-color: #FFFFFF. Is there a way to due this?

    The style portion of the Java script in the head of the page looks like this:
    <style type="text/css">
    .menutitle{
    cursorointer;
    margin-bottom: 5px;
    background-color:#ECECFF;
    color:#000000;
    width:140px;
    padding:2px;
    text-align:center;
    font-weight:bold;
    /*/*/border:1px solid #000000;/* */
    }

    .submenu{
    margin-bottom: 0.5em;
    }
    </style>


    I am trying to do something with the sub menu font to make it white.

    Here is the link to the script:
    http://www.dynamicdrive.com/dynamici...switchmenu.htm

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Talking

    you should be able to put your css code in the .submenu{} area.
    Code:
    .submenu{
    margin-bottom: 0.5em;
    color: #fff;
    }

  3. #3
    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

    Quote Originally Posted by pissa
    you should be able to put your css code in the .submenu{} area.
    Code:
    .submenu{
    margin-bottom: 0.5em;
    color: #fff;
    }
    I don't think that will work as this menu using anchor links to contain the text. This would require a selector like so:

    Code:
    .submenu a {
    See:

    http://www.dynamicdrive.com/forums/s...ad.php?t=11751
    - John
    ________________________

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

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Hi dmaier:
    Please do not cross post the same question in multiple threads, and also, observe the posting guidelines (this question should belong in the DD scripts category). Closing this thread, as duplicate can be found here:
    http://www.dynamicdrive.com/forums/s...ad.php?t=11751

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
  •