Results 1 to 3 of 3

Thread: Formatting of the Chrome Menu

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

    Default Formatting of the Chrome Menu

    I'm using the lovely chrome menu:
    http://www.dynamicdrive.com/dynamici...rome/index.htm

    But I'm curious about the look of it. I was wondering if there is a way to have it so that there is no "extra" non-button graphic showing up after the last nav button in the menu. You know, that nub that shows up? I have tried fudging it so that my table cell is just right but that's not working as well as I wanted it too.

    I see that some people have just set the background of their nav to be the same color as the background of thier page, which is a fine solution if it's the only solution I have.

    Just wondering if there is something more code-y to deal with this.

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

    Default

    Do you mean the divider that appears to the right of each menu lihk, that you wish to remove this image for the very last menu item? If so, you can try something like:

    Code:
    <ul>
    
    <li><a href="http://www.dynamicdrive.com">Home</a></li>
    <li><a href="#" onMouseover="cssdropdown.dropit(this,event,'dropmenu1')">Resources</a></li>
    <li><a href="#" onMouseover="cssdropdown.dropit(this,event,'dropmenu2')">News</a></li>
    <li><a href="http://cnn.com" onMouseover="cssdropdown.dropit(this,event,'dropmenu3')" style="background-image: none" >Search</a></li>	
    </ul>
    The part in red is new.

  3. #3
    Join Date
    Apr 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you so much for your response, but it is not the divider I am refering to. It's the bit of extra bg image sticking out past the last divider image.

    I'm assuming that the script is drawing another button, but I don't know how the script works.

    Thanks again for your help.

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
  •