StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 11-09-2008, 07:54 AM
Brian Gardner's Avatar
Brian Gardner Brian Gardner is offline
Administrator
 
Join Date: Sep 2008
Location: Chicago, IL
Posts: 5,360
Default How to Display Drop Down Menus in Front of Featured Content

When using the Featured Content plugin on a homepage, the drop down menus will display behind it. Take a look at the current CSS code below for the #navbar:

#nav li {
float: left;
margin: 0px;
padding: 0px;
}

#nav li li {
float: left;
margin: 0px;
padding: 0px;
width: 150px;
}

You should add two lines to each, and it should now look like this:

#nav li {
float: left;
margin: 0px;
padding: 0px;
z-index: 15;
position: relative;
}

#nav li li {
float: left;
margin: 0px;
padding: 0px;
width: 150px;
z-index: 10;
position: relative;
}

Likewise, you will need to do the same with the #subnav. Here's what the current code looks like:

#subnav li {
float: left;
margin: 0px;
padding: 0px;
}

#subnav li li {
float: left;
margin: 0px;
padding: 0px;
width: 140px;
}

And it should look like this:

#subnav li {
float: left;
margin: 0px;
padding: 0px;
z-index: 14;
position: relative;
}

#subnav li li {
float: left;
margin: 0px;
padding: 0px;
width: 140px;
z-index: 10;
position: relative;
}
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Menus Hidden Behind Featured Content eastgirl General Discussion 6 08-29-2009 08:20 AM
Drop down menus behind featured content gallery... 907group General Discussion 1 05-01-2009 02:46 PM
How to display Drop Down Menu in Front of FeaContent redondorealtor General Discussion 4 12-21-2008 09:54 AM


All times are GMT -5. The time now is 03:23 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.