Very possible.
Define the image in the css. Here’s an example (at the bottom)
http://www.tamba2.org.uk/wordpress/graphicalcss/content/index.html
Thread Starter
froots
(@froots)
hhmm…for some reason it’s not showing up π
Thread Starter
froots
(@froots)
Thread Starter
froots
(@froots)
ol li, #sidebar ul ol li {
list-style-image: wp-content/themes/default/images/(arrow.gif);
}
Should be
ol li, #sidebar ul ol li {
list-style-image: wp-content/themes/default/images/arrow.gif;
}
Thread Starter
froots
(@froots)
Yup…did that, still not showing up. By the way..the whole layout looks terrible on IE6 Window XP π
I cannot believe I did the above … I need shooting !
ol li, #sidebar ul ol li {
list-style-image: url(‘wp-content/themes/default/images/arrow.gif’);
}
Try enclosing the location:
list-style-image:url(wp-content/themes/default/images/arrow.gif);
and one ) at the end. Yep you got it Podz. π
Thread Starter
froots
(@froots)
Ok..i don’t see any of my arrow bullets, does anyone see them? How bout the whole layout being screwed up in IE6 π What seems to be the prob?
You must have the directory wrong to where you are trying to point to for those bullets.
For the IE thing, add this to your BODY css
margin:0 auto;
Thread Starter
froots
(@froots)
Ok…i’ve done all the above mentioned and still i can’t seem to find my bullets. Also the IE6 solution didnt seem to work. The layout is still the same, out of position π
froots,
I’m looking at your css and I don’t see that you added the fix. Should look like this:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Georgia', Verdana, Arial, Sans-Serif;
background-color: #818181;
color: #818181;
margin:0 auto;
text-align: center;
}
ol li, #sidebar ul li ul li {
list-style-image:url(‘wp-content/themes/default/images/arrow.gif’);
}
That works.