Results 1 to 2 of 2

Thread: All Levels Navigation Menu (Side)

  1. #1
    Join Date
    Dec 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default All Levels Navigation Menu (Side)

    1) Script Title: All Levels Navigation Menu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...menu/index.htm

    3) Describe problem: Not a problem but a customization question. Can I make the submenus a different color instead of black on white. Say blue on white for example or white on blue?

    Art

  2. #2
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    If you want to change the "default" background color of the submenu, you can open ddlevelsmen-base.css, and change highlighted:
    Code:
    .ddsubmenustyle li a{
    display: block;
    width: 160px; /*width of menu (not including side paddings)*/
    color: black;
    background-color: lightyellow;
    text-decoration: none;
    padding: 4px 5px;
    border-bottom: 1px solid black;
    }
    ...if you're wanting to change the "black on white" combination on hover, you can change highlighted:
    Code:
    .ddsubmenustyle li a:hover{
    background-color: black;
    color: white;
    }
    to:
    Code:
    .ddsubmenustyle li a:hover{
    background-color: #00f;
    color: white;
    }
    ...or anything that meets your heart's desire.

    Hope that helps.
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

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
  •