screenshot https://i.sstatic.net/CzUPk.png
I'm attempting to configure the subnav to be white and span the entire containing div (which is 1100px wide), with only the text links displayed vertically. However, I'm struggling to disable the background image for the subnav li element without affecting the main nav background image.
ul#horiznav, #horiznav ul {
/* Remove the bullets from the dropdown ul as well */
margin: 0;
padding: 0;
list-style-type: none;
height: 53px;
font-size: 10px;
}
#horiznav li {
float: left;
width: 150px;
position: relative;
/* Set position:relative as the starting point for absolutely positioning the dropdown */
}
#horiznav li a {
display: block;
width: 150px;
line-height: 30px;
text-align: center;
color: white;
text-decoration: none;
}
...