Hello. Does the enfold theme have any additional bullet styles for lists, other than the default circle, square, etc.? This is where I really miss twitter bootstrap. If not, can you suggest any plugin that will give additional styles. For example, this theme offers a nice custom list, which is what I’m looking for, http://artbees.net/themes/jupiter/shortcodes/custom-list. Thanks.
Hi,
You can actually do the same with fontello icons. Add a Text Block element, insert this on the text mode:
<ul>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
</ul>
✉ is an email icon from http://www.entypo.com/characters/.
Add this on your custom.css or Quick CSS
.entry-content li {
list-style: none;
}
.entry-content li span {
margin-right: 5px;
}
Regards,
Ismael