I am evaluating the Attitude theme for possible purchase of the upgrade version. One thing that I’ve noticed is that there isn’t any form of icon or bullet next to each entry in the Recent Posts widget. This makes it hard to distinguish one entry from the next when the title wraps more than one line. Is there some way in the Admin GUI to turn on this feature or, if not, is there some custom CSS to make this happen?
To add bullet next to each entry in the Recent Posts widget Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.widget_recent_entries ul li {
list-style: circle outside none;
margin-left: 15px;
padding-bottom: 10px;
}