Results 1 to 6 of 6

Thread: Nested Side Bar Menu

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

    Default Nested Side Bar Menu

    Hi everyone...

    I am new to this forum. Great site!

    Thanks for the Vertical CSS Menu "Nested Side Bar Menu" which I have used on my website: www.FishFinderSport.com

    Please can someone help?

    The menu works fine in all of the browsers that I've tested... However, I am having problems with the menu at the lowest navigation level -i.e. at the product level

    example: http://www.fishfindersport.com/hummi...596c-hd--39682

    On these pages the menu opens behind the other text and images.

    This only happens on product pages and not on any other pages...

    I suspect the problem lies with m website and that it is not a cross-browser issue...???

    Please help.

    Thanks,

    Jake

  2. #2
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    Go to your CSS file and edit this part:

    Code:
    .sidebarmenu ul {
        border-bottom: 1px solid #CCCCCC;
        font: 10px Verdana;
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 230px;
        z-index: 50;
    }
    That will bring the menu to the front.

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

    Default

    Hi Schmoopy...

    I've made the change and it works perfectly.

    Thanks for your prompt and professional response.

    Great forum!

    Jake

  4. #4
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    No problem, glad it worked for you.

    Good luck with your site

  5. #5
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi Schmoopy,

    Thanks for helping yesterday.

    You proposed adding z-index: 50; and that worked in IE8, Crome and FF.

    However, IE7 is still behaving as before...

    Problem: The menu opens behind images and text (only at product level...)

    Example: http://www.fishfindersport.com/hummi...der-560--36977

    Further assistance would be appreciated.

    Cheers,

    Jake

  6. #6
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Problem solved...

    Simply added "position: absolute" after "z-index: 50" as shown below...

    .sidebarmenu ul {
    border-bottom: 1px solid #CCCCCC;
    font: 10px Verdana;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 230px;
    z-index: 50;
    position: absolute;}

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
  •