Quote:
Originally Posted by BigVikingAl
I just loaded the latest verison of WP for a new blog. I have created a new link category called friends but I don't know how to get it in my sidebar. I have this code:
There seems to be no way of assigning category ID numbers for my links as in the older versions of WP. Any ideas?
|
For the same reason I had to insert, under (or above) the link category, something like this:
Code:
<div class="your_right_column_headings">
<h2>Heading</h2>
</div>
<ul class="you_right_column_list">
<span class="your_class_for_links">
<table width="1%" border="0" align="left" cellpadding="2" cellspacing="1">
<tr><td nowrap><a href="http://blabla.com" target="_blank">Blabla</a></td></tr>
<tr><td nowrap><a href="http://gogo.com" target="_blank">Gogo</a></td></tr>
</table>
</span>
</ul>
And put all links manually.