One of the things we love to do with our WordPress sidebars is add blinkies and links to show off the things we love. I’m going to show you how to do it here.
First, log into your WordPress admin panel. You will see this

Click on the Appearance tab in the sidebar and it will open to show you a few options. You need to click on Widgets.

Here’s what you see:

Some themes have only one sidebar, some have two, a few even have more than that, but we’re going to assume you have two. From the dropdown box under “Current Widgets” choose the sidebar in which you want to add your blinkies and/or links. Then locate the “Text” widget under the list of Available Widgets and click the “Add” link. It will move to your list of Current Widgets (but it won’t disappear from the Available Widgets list because you can add an unlimited number of Text widgets). Click the “Edit” link on your Text widget and it will open up to show a box where you can add your code:

Now, this may sound a bit scary, but you’re actually going to write some code here. This code is used to display my little postage stamp graphic in the sidebar of The Blog Shoppe, just like this:
The code is:
<a href="http://www.theblogshoppe.com"><img src="http://kathymoore.daynote.com/blog/images/sidetag.jpg" alt="" /></a>Let’s look at that line of code so you can understand what you did. First, the opening tag for the link:
<a href="http://www.theblogshoppe.com"></a>Next, we give it the code for the image we wish to display:
<a href="http://www.theblogshoppe.com"><img src="http://kathymoore.daynote.com/blog/images/sidetag.jpg" alt="" /></a><a href="http://www.theblogshoppe.com">The Blog Shoppe</a>That will give you this:
Lastly, you have to tell the browser you’re finished with the link. You do that with your closing tag:
If you want to add more than one image or link, you can put them on separate lines by adding
<br />after each one.
Now, you’re almost finished with your links. Click the “Done” button and your widget window will close, taking you back to the list. If you’d like to rearrange your widgets, you can simply drag them up and down to put them in the order you wish to have them displayed. Now, you just need to save your changes by clicking the “Save Changes” button.

So that’s it…not too difficult, was it? If you have any questions, just put them in the comments and I’ll be happy to answer them. Good luck and have fun!







