Hello Ideo,
Sorry for the delay in the reply. Thank you for waiting.
Please open the stylesheet (wp-content/themes/spotlight/style.css)
Find :
#pages_navigation li ul {
display: block;
position: absolute; top: 27px; left: -9999em;
float: left;
list-style-type: none;
list-style-position: outside;
width: 120px;
}
Replace it with:
#pages_navigation li ul {
display: block;
position: absolute; top: 27px; left: -9999em;
float: left;
list-style-type: none;
list-style-position: outside;
width: 120px;
z-index: 2;
}
Then find:
#category_navigation {
background: #15130a url('imgs/category_nav_bg.jpg') repeat-x;
border-top: 1px solid #7e7e74;
border-bottom: 1px solid #a8a8a8;
font-size: 11px; font-weight: bold;
height: 27px;
list-style: none;
position: relative;
padding: 0 13px;
z-index: 2;
}
Replace it with:
#category_navigation {
background: #15130a url('imgs/category_nav_bg.jpg') repeat-x;
border-top: 1px solid #7e7e74;
border-bottom: 1px solid #a8a8a8;
font-size: 11px; font-weight: bold;
height: 27px;
list-style: none;
position: relative;
padding: 0 13px;
z-index: 1;
}