In the step 8
Code:
<ul>
<li>
<a href="http://twitter.com/books_writers">
<img src="/images/follow/twitter.jpg">
Instead use:
Code:
Follow Us On: <ul>
<li>
<a href="http://twitter.com/books_writers">
<img src="/images/follow/twitter.jpg">
Alternately, to give it a little style, use CSS, for example, if you want to be strong, uppercase and colored in gray you can use following codes
In Additional.CSS add
Code:
.flwtext {
font-family:arial, verdana,tahoma;
font-size:13px;
text-transform:uppercase;
color: #ccc;
font-weight: bold;
padding: 2px;
}
[Note: Since, change padding, size, color etc according to your needs]
Then in the step 8 Replace the above mentioned code with
Code:
<span class="flwtext">Follow Us On: </span><ul>
<li>
<a href="http://twitter.com/books_writers">
<img src="/images/follow/twitter.jpg">
Alternately, if you need to add an image saying "Follow Us On"
You can simply use this code
Code:
<ul>
<li>
<img src="/images/follow/nameofyourimage.jpg"></li>
<li>
<a href="http://twitter.com/books_writers">
<img src="/images/follow/twitter.jpg">