I am trying to show an unordered list within the content of one of my pages using a bullet I created.
I made this list a secondary list b/c my navigation is also an unordered list that displays the nav tabs horizontally along the page. I don't know if the CSS code from that is over-riding my secondary unordered list but all that is showing up on the page is just the text. No bullets or any other changes. I have been GOOGLING this issue for over an hour but no luck.
Can anyone help?
HTML CODE
Code:
<ul id="services_list">
<li>List item</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
CSS Code for the Navigation:
Code:
#navcontainer ul {
padding: .2em 0;
margin: 0;
background-color: #658C88;
color: #FFF;
width: 100%;
font: normal 90% arial, helvetica, sans-serif;
text-align: center;
}
li {
display: inline;
font-family: Verdana, Geneva, sans-serif;
text-transform: uppercase;
}
li a {
text-decoration: none;
background-color: #658C88;
color: #FFF;
padding: .2em 1em;
border-right: 1px solid #fff;
}
li a:hover {
background-color: #011526;
color: #D9D3B8;
}
CSS Code for the unordered list w/ custom bullet:
Code:
ul#services_list li{
height: 15px;
list-style-image: url(images/check.GIF);
}