I'm trying to add a bullet point image to the left of a list item when hovering over a link in the list, but it doesn't seem to be working.
Here is the CSS I've attempted:
ul.navibox a:hover{
list-style-image:url(images/crown-icon.jpg);}
Any suggestions or ideas on how to make this work?
This is my current CSS:
ul.navibox{
margin:0 0 0 0;
padding:5px 0 0 20px;
list-style-type:none;
font-family:arial,verdana,helvetica,sans-serif;
font-size:14px;
color:#333333;}
ul.navibox li a:link{
color:#ff0;
text-decoration:none;}
ul.navibox li a:visited{
color:#f00;}
ul.navibox li a:hover{
color:#f0f;
list-style-image:url(images/crown-icon.jpg);}
Here is the HTML structure:
<div id="middle_left_box"><span style="padding-left:10px">Categories</span>
<h3>accessories</h3>
<h4>Supplies:</h4>
<ul class="navibox">
<li>Pellets</li>
<li>Gas</li>
<ul>
</div>