Style Lists and List Items

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;
}

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: