How Do I Remove a Custom Bullet?
-
I’m trying to customize the Vigilance theme. One minor thing that bugs me is the image used for unordered lists in posts — a little star. I’d be much happier with a standard bullet.
I tried adding the following, but I still see the star:
.entry ul li {
list-style-image:none;
list-style-type:disc;
text-indent:10;
}Anybody have any suggestions? What am I doing wrong?
Thanks very much,
SteveThe blog I need help with is: (visible only to logged in users)
-
Have you solved this?
Also, this is bad syntax:
text-indent:10;Always specify the units, like so:
text-indent:10px; -
Okay, thanks regarding the syntax. Good point.
And no, I haven’t solved the bullet thing. It insists on using the image.
Steve
-
would you point me to a post where this is happening? this one shows regular bullet points:
http://splicehere.wordpress.com/2010/01/22/sleeping-or-surfing/
-
-
Try this:
.entry ul {list-style: disc;} .entry ul li {background: none;}Let me know if that works
-
Thanks a lot for the help. That gets rid of the star but doesn’t produce a standard bullet.
This is the relevant section of the CSS:
.entry ul li, .c-body ul li {
display: block;
margin: 5px 0 0 0;
padding: 0 0 0 17px;
background: url(../images/list-star.gif) no-repeat 0 .3em;
}Thanks again,
Steve -
-
-
Sorry for the delay. Because of my job, I haven’t been able to work on your issue, but I’ll try to make some time this weekend (I have freelance projects to take care of) and see what I can do.
-
Thanks. But don’t sweat it. I changed the standard bullet image (a start) to an image I like. Not the most elegant answer, but it worked well enough. and looks good.
Thanks again,
Steve -
-
@domeonnet please don’t do that.
Also, the site linked to your username is not a WordPress.COM blog, so please make sure you are in the right forums. Check out the two stickies at the top of this forum
WordPress.COM or WordPress.ORG? The difference
- The topic ‘How Do I Remove a Custom Bullet?’ is closed to new replies.