Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

use image as bullet in stylesheet


Tidbeck

Recommended Posts

Posted

Im trying to use a very small image as a bullet image that i would like to appear in the category and information boxes

 

I've tried to alter the stylesheet like this:

 

 

.infoBoxContents {

 

font-family: Helvetica, Arial, sans-serif;

font-size: 11px;

line-height: 2em;

background: #ffffff;

list-style-image: url(/images/b.png);

 

but with no success, any ideas how to get it to work?

 

/Elin

Posted

list-style-image: url(/images/b.png);

was incorrect anyway. It says to find the image at /images/b.png, which presumably is the wrong place. You probably wanted

list-style-image: url(images/b.png);

which says to look in ./images relative to the directory holding the .css file.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...