I am using Connections Reloaded as my blog theme. I would like to remove the top nav links with the exception of "Home."
http://www.homespunhealers.com
Could someone please advise me on how to do this?
Thanks in advance.
I am using Connections Reloaded as my blog theme. I would like to remove the top nav links with the exception of "Home."
http://www.homespunhealers.com
Could someone please advise me on how to do this?
Thanks in advance.
It seems that you have to edit the header.php file of the theme.
Replacing this:
<ul id="topnav">
<li><a href="<?php bloginfo('url'); ?>" id="navHome" title="Posted Recently" accesskey="h">Home</a> | </li>
<li><a href="/about/" id="navAbout" title="About the Author" accesskey="a">About</a> | </li>
<li><a href="/archives/" id="navArchives" title="Posted Previously" accesskey="r">Archives</a> | </li>
<li><a href="/links/" id="navLinks" title="Recommended Links" accesskey="l">Links</a> | </li>
<li><a href="/contact/" id="navContact" title="Contact the Author" accesskey="c">Contact</a></li>
</ul>
For just this:
<ul id="topnav">
<li><a href="<?php bloginfo('url'); ?>" id="navHome" title="Posted Recently" accesskey="h">Home</a> | </li>
</ul>Thank you wp_guy!!
no problem ;-)
Nice!
I'm using Connections Reloaded as my blog theme. I would like to add a heading in my Links widget of the sidebar. There is no heading provided for Links. Can someone tell me how to add this?
This topic has been closed to new replies.