Results 1 to 2 of 2

Thread: Why is the panel coming down behind the three columns?

  1. #1
    Join Date
    Jan 2011
    Location
    Southeastern CT
    Posts
    612
    Thanks
    46
    Thanked 32 Times in 32 Posts

    Default Why is the panel coming down behind the three columns?

    Is it the css coding that is causing this?
    http://www.web-user.net/test/1/test2.html


    here is the page source:
    http://www.web-user.net/test/1/test2.txt


    http://web-user.net/test/1/jkpanel.js
    http://web-user.net/test/1/jquery-1.2.2.pack.js
    http://web-user.net/test/1/layout.css

    I am planing to apply this to a webpage I have been working on for a while but have not figured out all of the bugs yet.

    Bud

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    If you add a z-index of say 10 to the dropdown panel it will stay in front of the columns
    Code:
    #dropdownpanel{ /*Outermost Panel DIV*/
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    visibility:hidden;
    z-index: 10;
    }

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
  •