2013-08-16, 07:16:00
Normally you would write the nav like this:
You cannot in a GetSimple theme template specify what pages are actually included in the site.
It is very normal to code the nav as an unordered list ( <ul> ), I don't know why your page just has a series of <a> elements not in a list, but in GetSimple it has to be a list, so use the <ul> tags.
Code:
<nav id="nav">
<ul>
<?php get_navigation(return_page_slug()); ?>
</ul>
</nav>
You cannot in a GetSimple theme template specify what pages are actually included in the site.
It is very normal to code the nav as an unordered list ( <ul> ), I don't know why your page just has a series of <a> elements not in a list, but in GetSimple it has to be a list, so use the <ul> tags.