CSS dropdown trouble.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lowngeact

    CSS dropdown trouble.

    So... not like I actually know what I'm doing here, but I have this
    site that I'm working on. http://butchross.com/kyfolkweb/ four of the
    five events has a drop down menu, but for whatever reason I cannot get
    the dropdown to appear on top of the sidebar. I have tried to use a
    z-index (with a position:relati ve and position:absolu te tag) but to no
    avail, I'm stumped. anyone have any ideas? Here's the style sheet


    Oh, and one other thing, looks like shit in Safari, any ideas?

    Thank you

    -Br

  • Axel Dahmen

    #2
    Re: CSS dropdown trouble.

    Looks nice on Firefox, but the highlighting colour doesn't seem to be set
    correctly on the menu header. Just the lower half of the menu header get the
    lighter colour.

    All I can say is that if

    ul {
    display: inline;
    padding: 4px 0;
    margin: 0;
    list-style: none;
    z-index: 2;
    }

    is the only z-index you're using than that's not enough. Not only that you
    assign the z-index to each and every <UL> element (deeply nested <UL>s
    included) but also didn't assign any position attribute to it.

    HTH,
    Axel Dahmen



    -----------
    "lowngeact" <butchross@gmai l.com> schrieb im Newsbeitrag
    news:1112888657 .531963.181610@ z14g2000cwz.goo glegroups.com.. .[color=blue]
    > So... not like I actually know what I'm doing here, but I have this
    > site that I'm working on. http://butchross.com/kyfolkweb/ four of the
    > five events has a drop down menu, but for whatever reason I cannot get
    > the dropdown to appear on top of the sidebar. I have tried to use a
    > z-index (with a position:relati ve and position:absolu te tag) but to no
    > avail, I'm stumped. anyone have any ideas? Here's the style sheet
    > http://butchross.com/kyfolkweb/arbitrary.css
    >
    > Oh, and one other thing, looks like shit in Safari, any ideas?
    >
    > Thank you
    >
    > -Br
    >[/color]


    Comment

    Working...