Adding
links to your side bar (menu) .
1.
Log into blogger.com and choose which
blog you will be working on.
2.
Click the "Template" tab, you will now see
a box with text
(and some of it may look like greek
to you ;-)
3.
Depending on the initial template you chose, you are
looking for text like:
<!-- Sidebar -->
OR <!-- BEGIN MENU -->
This is the beginning of the area in which you can
add links and images.
With all of the below examples, copy
the text and paste it into your template.
by
the way: the code below that is <br> will
make the next link appear right below the first
link. if you want to space them farther apart
use <p> before
the link and </p> after
the link.
4.
To add a simple text link:
<a
href="http://www.yourlink.com">your
link text</a><br>
5.
To add a text link which opens in a new window:
<a
href="http://www.yourlink.com"
target="_blank">your link
text</a><br>
6.
To add an image or button as a link, which opens in
a new window:
<a href="http://www.moonarts.com" target="_blank"><img src="button.gif" border="0"></a><br>
6.
To add buttons, spacing them farther apart on the
page
<p><a href="http://www.moonarts.com" target="_blank"><img src="button.gif" border="0"></a></p>
|