My blog is http://blog.earlyfaith.com/
I want to create a "Home" navigational button in front of the "Blog" button to take readers to http://www.earlyfaith.com
How can I do this?
P.S. I don't even see a way to make a new page add to the navigation.
My blog is http://blog.earlyfaith.com/
I want to create a "Home" navigational button in front of the "Blog" button to take readers to http://www.earlyfaith.com
How can I do this?
P.S. I don't even see a way to make a new page add to the navigation.
You'd need to edit the relevant template file in your theme (possibly header.php) and add the link manually. eg:
<ul class="artmenu">
<li><a href="http://www.earlyfaith.com/"><span><span>Home</span></span></a></li>
<li><a href="<?php bloginfo('url);?>" class="active"><span><span>Blog</span></span></a></li>
</ul>That's great. That created the button, but its not the correct color. It should be black, like "Blog" is.
This topic has been closed to new replies.