is it possible to create (in css) a layout for my comments like this:
1. (img) .....
2. (img) .....
3. (img) .....
I tried this code but it faild:
ol {
list-style: decimal url(img/comment.gif);
}
someone a solution for me?
is it possible to create (in css) a layout for my comments like this:
1. (img) .....
2. (img) .....
3. (img) .....
I tried this code but it faild:
ol {
list-style: decimal url(img/comment.gif);
}
someone a solution for me?
add a background image to your ol li style and offset the text with some padding so the image is visible...
thx for the tip
the background is displayed ones with this:
ol {
list-style: decimal;
background-image: url(img/comment.gif);
background-repeat:no-repeat;
}
and i want it to display the image before every decimal...
This topic has been closed to new replies.