I am currently working on a navigation design where I want to have an image above each list item instead of having individual images for each item. It looks great when the screen is at full size, but as soon as I minimize it, the list items start stacking on top of each other. Below is the code snippet I am using:
#nav ul, #nav li {
list-style: none;
font-size: 1.2em;
text-transform:uppercase;
}
#nav ul li {
display: inline;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background: url(images/navico.jpg) no-repeat center;
padding-top: 50px;
padding-right: 4px;
padding-bottom: 0px;
padding-left: 6px;
}
You can view this page by following the link