
Always want to assigns icons to the widgets in the sidebar? I show you how it´s done just by adding a few lines to your theme’s CSS. This tutorial is intended for people with basic XHTML / CSS skills.
Structure
Widget ready themes are built in such a way that each widget acts as an item of a bulleted list. So your sidebar HTML will look something like this:
<ul> <li id="widget1" class="widget widget_1">Widget1 Content</li> <li id="widget2" class="widget widget_2">Widget2 Content</li> <li id="widget3" class="widget widget_3">Widget3 Content</li> </ul>
