I use the css stylesheet for a community I co-mod (pier56) (with a link back here, naturally). It's a really pretty layout, and I just wanted to say thank you before I forgot!
This is the first time I have ever used anything with code, so this is most likely totally my fault, but I can't seem to figure out how to remove some little roman numerals that are floating next to the sidebar.
Comments 12
Reply
Reply
Reply
Reply
Then sometimes it can be 800x300 pixel or 900x300 pixel. These are the sizes that are mostly used but in the end it's all up to you!
Reply
Thanks.
~ sera
Reply
This is the first time I have ever used anything with code, so this is most likely totally my fault, but I can't seem to figure out how to remove some little roman numerals that are floating next to the sidebar.
Reply
In the stylesheet/code look for:
.entry ul li, ol li, li {
padding-left: 5px;
margin-left: 0px;
list-style: upper-roman;
list-style-position: outside;
}
and remove the two list-style bits:
.entry ul li, ol li, li
{
padding-left: 5px;
margin-left: 0px;
}
I'm deeply sorry for this!
Reply
And thankyou so much, that fixed it right up. :D
Reply
You're very welcome. :)
Reply
Reply
♥ :)
Reply
Leave a comment