This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.
All Lists ∞
Place this code in custom.css as a starting point:
.custom ul {
list-style-image: none;
list-style-position: outside;
list-style-type: square;
}
.custom li {
padding-bottom: 5px;
}
Post Content Lists Only ∞
Place this code in custom.css as a starting point:
.custom #content ul {
list-style-image: none;
list-style-position: inside;
list-style-type: disc;
}
.custom #content li {
padding-bottom: 5px;
}
Sidebar Widgets Only ∞
Place this code in custom.css as a starting point:
.custom #sidebars li.widget ul {
list-style-image: none;
list-style-position: inside;
list-style-type: disc;
}
.custom #sidebars li.widget li {
padding: 5px;
}
Related Resources:
- CSS List Properties from W3 Schools