DropDown menu is blocked by FCG (Featured Content Gallery)
I’m working on a project about setting up a shopping site by using WP, and found rich-affiliate might be the best theme for the site. but there’re problems after some modifications to the theme, here’s a piece of advise i want to share with you.
FCG is a great plugin for image display, but it constantly block the dropdown menu of some themes, below is just the solution for rich-affiliate, because the style page of every theme is different, which means the solution should base on the theme you use. there you go.
find below lines in style.php
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
left: 0;
width: 14em;
}
add z-index:101; into it, makes it like this
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
left: 0;
width: 14em;
z-index:101;
}
same file, search for lines
ul.nav {
position:relative;
height:<?php echo $rich_navitemheight;?>;
font-family:<?php echo $rich_font4;?>;
font-size:<?php echo $rich_fontsize3;?>;
<? if ($rich_capitals == “true”) { ?>
text-transform: uppercase;
<? } ?>
}
makes it into this
ul.nav {
position:relative;
height:<?php echo $rich_navitemheight;?>;
font-family:<?php echo $rich_font4;?>;
font-size:<?php echo $rich_fontsize3;?>;
<? if ($rich_capitals == “true”) { ?>
text-transform: uppercase;
<? } ?>
z-index:100;
}
then the problem should be solved.
I talked about a plugin called