I'm using dropbox child with all static pages. I have the Nav menu at the top of the home page, but on all the other pages I use the Primary Widget on the left for two navigation items and the Secondary Widget on the right for four navigation items. All work fine with the exception of the home page navigation. Here are code examples:
<li><a href = “?page_id=4”>Fiction</li> This is partial code within the <ul> which is fine. It takes me to http://localhost/hh/wordpress/?page_id=4 which is what the home page navigation bar does.
However, since the Home Page does not have a specific page_id, I can't get it to work. I've tried a number of ways such as the following:
<li><a href = “wordpress”>Home</li> This comes up with 404 and shows localhost/wordpress/wordpress
<li><a href = “”>Home</li> This does nothing, keeping me on the current page.
Any idea's?