Twitist Forums
How do I add a link into html on blogger? - Printable Version

+- Twitist Forums (http://twitist.com)
+-- Forum: Twitter forums (/forum-1.html)
+--- Forum: Twitter General help (/forum-6.html)
+--- Thread: How do I add a link into html on blogger? (/thread-156859.html)



How do I add a link into html on blogger? - isla - 05-17-2014 04:03 AM

Hi!
im working on my music blog (which is on blogger) and i'm trying to change the theme.

I want to add in links to the menu to redirect the readers to a page with posts tagged 'album' or 'live' for example.

so far I have this:

<!-- Start - Navigation Menu -->
<div class='nav'>
<ul class='menu' id='menu'>
<li><a expr:href='data:blog.homepageUrl'>home</a></li>
<li><a class='drop-ctg' href='#'>Categories</a>
<ul>
<li><a href='#'>Album</a></li>
<li><a href='#'>Live</a></li>
<li><a href='#'>Single</a></li>
<li><a href='#'>Introducing</a></li>
</ul>
</li>
<li><a href='#'>Contact</a></li>
<li><a href='#'>Twitter</a></li>
</ul>
</div>
<!-- End - Navigation Menu -->


do you know how I add links to the key words album, live, single, introducing, contact and twitter?


- Franco - 05-17-2014 04:11 AM

Hello

Try what's below.

<!-- Start - Navigation Menu -->
<div class='nav'>
<ul class='menu' id='menu'>
<li><a expr:href='data:blog.homepageUrl'>home</...
<li><a class='drop-ctg' href='#'>Categories</a>
<ul>
<li><a href="http://www.mywebsite.com/album.html">Founder</a>Album</a></li>
<li><a href='http://www.mywebsite.com/live.html'>Live</a></li>
<li><a href='http://www.mywebsite.com/single.html'>Single</a></li>
<li><a href='http://www.mywebsite.com/introducing.html'>Introducing</a></li>
</ul>
</li>
<li><a href='http://www.mywebsite.com/contact.html'>Contact</a></li>
<li><a href='https://twitter.com/user id'>Twitter</a></li>
</ul>
</div>
<!-- End - Navigation Menu -->

Note: I think you need to put a username after the last forward slash of the twitter url. You would replace mywebsite.com with your subdomain, or domain name.