cableghost
Member
Posted 12 months ago #
I need some help with a theme...the
<ol> are not displaying in the post areas.
The theme has CSS to not show
<ul> in sidebar (colRight), but I cannot figure out why
<ol> are not appearing in the post area (colLeft).
I have tried adding code specific to ul and ol, but nothing seems to work.
Here is my css: stylesheet
I would appreciate any pointers.
-Scott
Have you tried a more specific ol?
Perhaps something like this:
.postItem {
margin:0 30px; padding: 10px 20px;
}
I think that the very top style
* { margin: 0; padding: 0; }
is removing the padding and margin from your ol, and so you can not see them.
Hope this helps.
cableghost
Member
Posted 12 months ago #
@Christine - Excellent
* { margin: 0; padding: 0; } was the cause.
Thanks, Scott.
@cableghost Fantastic. Glad to be able to help.