I have a verticle list of links with in the li tags. I want the links to not have bullets unless it is on the current page. I found this tutorial but I cant get the bloody thing to work. I am a novice at css so it gets frustrating. Also I have a custom bullet graphic that I want to show when it is on that links page.
Code so far pertaining to this:
In the header area. I will be moving this to an external sheet in the end.
link {
font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
line-height: 50%;
font-weight: lighter;
color: #000000;
text-decoration: none;
text-align: left;
padding: 2px;
}
a:link {
font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: normal;
color: #000000;
text-decoration: none;
padding: 3px;
}
a:visited {
font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
line-height: normal;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 9px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
}
a:active {
font-size: 9px;
font-style: normal;
line-height: normal;
font-weight: normal;
text-decoration: none;
font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
color: #000000;
list-style-image: url(../images/bullet.gif);
}
li { list-style-position: inside;
list-style: none;
}
In the div
<div id="sidebar-a" align=left><table width="135" border="0" align="left" cellpadding="0" cellspacing="0"><p class="line-height">
<tr>
<td>
<hr size="1" />
<a href="home.htm"><li>Home</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Logos + Corporate ID</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Brochures</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Catalogs</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Magazines</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Annual Reports</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Client Comments</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Articles of Interest</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Contact Us</li><br />
</a><hr size="1" /><a href="place_holder.htm"><li>Site Map</li><br />
</a><hr size="1" />
</td>
</tr>
</p></table></div>
Please help me.
