How to get the navigation links working

To get the navigation links working after installing this template go to layout > edit html and look for the following code

<ul>
<li><a href='/'>Home</a></li>
<li><a href='#'>About</a></li>
<li><a href='#'>Portfolio</a></li>
<li><a href='#'>Services</a></li>
<li class='lastchild'><a href='#'>Contact</a></li>
</ul>


change all the # with the actual links for example

<ul>
<li><a href='/'>Home</a></li>
<li><a href='http://myblog.blogspot.com/p/about.html'>About</a></li>
<li><a href='http://myblog.blogspot.com/p/portfolio.html'>Portfolio</a></li>
<li><a href='http://myblog.blogspot.com/p/services.html'>Services</a></li>
<li class='lastchild'><a href='http://myblog.blogspot.com/p/contact.html'>Contact</a></li>
</ul>


you can see how this template was created here any problems leave your comment