Results 1 to 3 of 3

Thread: How do you remove the arrows in the jQuery Multi Level CSS Menu #2?

  1. #1
    Join Date
    Jun 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Talking How do you remove the arrows in the jQuery Multi Level CSS Menu #2?

    I'm trying to modify the code to fit a website I'm designing and I cant find out how to remove the the arrow images from appearing on the menu and still having the menu drop down. I found one way to remove the arrows, but it prevented the menu from working. Can you tell me how?

  2. #2
    Join Date
    Jul 2008
    Location
    Serbia
    Posts
    47
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    In jqueryslidemenu.js find this line
    Code:
    //Specify full URL to down and right arrow images (23 is padding-right to add to top level LIs with drop downs):
    var arrowimages={down:['downarrowclass', 'down.gif', 23], right:['rightarrowclass', 'right.gif']}
    If you wish to change img you can do it hire in js file, or you can locate class (yellow) in css file jqueryslidemenu.css and set to display:none; to remove them.

    Code:
    .downarrowclass{
    position: absolute;
    top: 12px;
    right: 7px;
    display:none;
    }
    
    .rightarrowclass{
    position: absolute;
    top: 6px;
    right: 5px;
    display:none;
    }

  3. #3
    Join Date
    Jun 2010
    Posts
    4
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    hello
    i want to know that what types of features available in j query ? and how it work in css ?

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
  •