Results 1 to 2 of 2

Thread: css menu bring forward

  1. #1
    Barrista
    Join Date
    Jun 2003
    Posts
    3,441

    css menu bring forward

    Hi all,

    Its been a while since I've posted here as I've been really busy, however I thought that I might return and hopefully get some advice on a small problem I'm having.

    I've made a css based drop down navigation menu but when the content is revealed on the drop down the content id hiding behind the div below it. I can't seem to get the drop down navigation to show even with a z-index of 999, I've tried number from -999 right through to 999 itself.

    Can anyone shed any light on this please?

    Thanks.

  2. #2
    Barrista
    Join Date
    Jun 2003
    Posts
    3,441
    Originally posted by Martin
    Hi all,

    Its been a while since I've posted here as I've been really busy, however I thought that I might return and hopefully get some advice on a small problem I'm having.

    I've made a css based drop down navigation menu but when the content is revealed on the drop down the content id hiding behind the div below it. I can't seem to get the drop down navigation to show even with a z-index of 999, I've tried number from -999 right through to 999 itself.

    Can anyone shed any light on this please?

    Thanks.


    Got it..... Turns out that all I had to do was use positioning ans z-index... duh how stupid to forget !!

    #navcont {

    background: #EFECEC;
    width: 950px;
    border: 1px solid #b5b4b3;
    z-index: 2;
    position: relative;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;

    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •