Results 1 to 3 of 3

Thread: Chrome drop down remove parent links.

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

    Default Chrome drop down remove parent links.

    1) Script Title: Chrome dropdown Version 2.01

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

    3) Describe problem: Parent menu items... is it possible to setup these so they display no url.....I know you can switch them on/ off click. but is it possible to remove the link altogether and still get the drop downs to open having the mouse pointer too.

  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

    From the demo.htm, remove the href="#" part:

    Code:
    <div class="chromestyle" id="chromemenu">
    <ul>
    <li><a href="http://www.dynamicdrive.com">Home</a></li>
    <li><a href="#" rel="dropmenu1">Resources</a></li>
    <li><a href="#" rel="dropmenu2">News</a></li>
    <li><a href="#" rel="dropmenu3">Search</a></li>	
    </ul>
    </div>
    so you get:

    Code:
    <div class="chromestyle" id="chromemenu">
    <ul>
    <li><a href="http://www.dynamicdrive.com">Home</a></li>
    <li><a rel="dropmenu1">Resources</a></li>
    <li><a rel="dropmenu2">News</a></li>
    <li><a rel="dropmenu3">Search</a></li>	
    </ul>
    </div>
    But you lose your pointer cursor, so in the stylesheet (a part of chromestyle.css shown here, addition red):

    Code:
    .chromestyle ul li a{
    color: #494949;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-right: 1px solid #DADADA;
    cursor:pointer;
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    Thanks for speedy reply.....

    works perfect, just how I wanted.....

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
  •