• Hi all ive been surching for help with my problem all over the place, so far nether the Featured Content blugin pages nor my theme authors support section have been any help. So I turn to the whole wordpress community.

    I have recently installed the Featured Content plugin and now the drop down menu of my Revolution pro Media theme go behind the plugin and are not displayed.

    How can I make them appear infront of the featured content slide show.

    Please help as this is driving me mad.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Edit the z-index in the css file. The higher the z-index, the more important it is in the “stack”. See here for more info: https://developer.mozilla.org/en/docs/Understanding_CSS_z-index

    Thread Starter drgizmondo

    (@drgizmondo)

    ive had a look at the code, from what I can see the nav bar has no z-index. the plugin does, but no matter what number i use it has no effect.

    Had the same issue. Hopefully this will help.

    They dynamic gallery uses a lot of z-index values. It has it’s own CSS located in the plug in directory. The highest one they use is z-20.

    Z Values in the dropdown menus (I’m pretty sure these are Suckerfish menus) aren’t specified. So you have to add a value greater than the ones in the Dynamic Content CSS. In this case, I added a z-index of 30.

    Here’s the snippets from my main css file (I’m using wp-magazine theme, too.):

    #nav li ul {
      position: absolute;
      <strong>z-index: 30;</strong>
      width: 140px;
      left: -999em;
    }
    #nav li li a, #nav li li a:link, #nav li li a:visited {
      background: #F0F0F0;
      <strong>z-index: 30;</strong>
      width: 140px;
      float: none;
      text-transform: none;
      margin: 0px;
      padding: 7px 10px 7px 10px;
    }

    sorry, those tags aren’t supposed to be in there.

    anyway, hopefully you get the drift.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Featured Content plugin hides drop down menus’ is closed to new replies.