Results 1 to 2 of 2

Thread: Hello! Help me with this please!

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

    Exclamation Hello! Help me with this please!

    Hi! How can I change the buttons for the DD Color Tabs of Horizontal CSS Menus?

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Code:
    #ddcolortabs a{
    float:left;
    color: white;
    background: #678b3f url(media/color_tabs_left.gif) no-repeat left top;
    margin:0 2px 0 0;
    padding:0 0 1px 3px;
    text-decoration:none;
    letter-spacing: 1px;
    }
    
    #ddcolortabs a:hover{
    background-color: #8cb85c;
    }
    
    #ddcolortabs a:hover span{
    background-color: #8cb85c;
    }
    
    #ddcolortabs #current a, #ddcolortabs #current span{ /*currently selected tab*/
    background-color: #8cb85c;
    }
    The above mentioned are the styles that does the color manipulation for the DD Color Tabs of Horizontal CSS Menus.


    In #ddcolortabs a style you can replace the color code with whatever background color you want.

    #ddcolortabs a:hover and #ddcolortabs a:hover span you can change to have a new hover color - (In other words whenever you move your moue over the menu what color you want to have you can specify there)


    If you want to change the currently selected color then change the background color specified in #ddcolortabs #current a, #ddcolortabs #current span style.

    I think that will give you the the result you are looking for.

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
  •