Add pictures next to category?

Does anyone know how I can add a pictures next to a category?
I.E:



Click on the picture to view their website :)

I wanna be able to add a picture next to my forum, similar to how they've done it?
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Rich (BB code):
.nodeList .node_7 .nodeText:before
{
	content: url('path/to/image.gif');
	float: left;
	margin-right: 5px;
}

You need to specify the node_id in the class name.

The result:

Screen shot 2011-12-27 at 6.27.08 PM.webp
 
Top Bottom