I’ve been tweaking my paid CSS stylesheet upgrade. I couldn’t figure out how to make the bullets for listed, unordered and ordered items line up perfectly for visual impact. Here are some useful CSS codes for the `Sandbox` theme.
For the content:
`div.entry-content ol li {
color:black;
margin:0 0 0 30px;
padding:0;
}``div.entry-content ul li {
list-style:disc;
margin:0 0 0 10px;
padding:0;
}``div.entry-content ul ul li {`
list-style:circle;`
margin:0 0 0 10px;`
padding:0;`
}``div.entry-content ul ul ul li {`
list-style:square;`
margin:0 0 0 10px;`
padding:0;`
}`
For the sidebar:
`div.sidebar ul ul li {`
list-style:disc;`
margin:0;`
}``div.sidebar ul ul ul li {`
list-style:circle;`
margin:0;`
}`div.sidebar ul ul ul ul li {`
list-style:square;`
margin:0;`
}
I can’t figure out the rest and don’t know the purpose of bookmarks, yet.
Leave a Reply