Site: http://www.pansentient.com
Hi,
Just moved over from Blogger and installed the wonderful Vina theme. I tweaked it a little but one thing I can't figure out yet is what happened to the bullets on the first ("feature") post on the cover page and on the About page(s). From the main page, if I click on the post the bullets re-appear on the single-page view.
I'm sure it's something obvious in the css, but I can't find it. Please help!
Looks like the featured post doesn't have the .post class needed for the list bullets. Try adding .xxxpost ul to:
.xpost ul, .post ul {
list-style-image:none;
list-style-position:outside;
list-style-type:square;
}
in post.css
Thanks esmi, spot on!
I edited post.css to include xxpost and xxxpost (both were missing):
.xpost ul, .xxpost ul, .xxxpost ul, .post ul {
list-style: square;
}
.xpost ol, .xxpost ol, .xxxpost ol, .post ol {
list-style: decimal;
}