Quote:
Originally Posted by lmilesw
I though I was the only one who did stuff like that.
|
Lol I know, it was only when I'd posted the link to it in here that it clicked
It does work for what I wanted it to do. But the title section doesn't seem to take its lead from the Atahualpa settings, so its now smaller than the others, but the way I have things laid out I can live with it.
For anyone wanting to do this with categories as well, unless you want to get down and dirty in code there really aren't many options. I settled for doing it manually...
Insert this into a text widget...
HTML Code:
<table border="0" width="100%" cellpadding="0">
<tr>
<td width="50%" valign="top">
<ul>
<li><a href=”#”>Category 1</a></li>
<li><a href=”#”>Category 2</a></li>
<li><a href=”#”>Category 3</a></li>
<li><a href=”#”>Category 4</a></li>
</ul>
</td>
<td width="50%" valign="top">
<ul>
<li><a href=”#”>Category 5</a></li>
<li><a href=”#”>Category 6</a></li>
<li><a href=”#”>Category 7</a></li>
<li><a href=”#”>Category 8</a></li>
</ul>
</td>
</tr>
</table>
Then you can add the links to your categories and their titles in by hand. Obviously if you add a new category you'll have to edit the widget, but its better than the long one column list WP uses as a default and doesn't waste so much space on a wide sidebar.
Hope this helps someone!