I need to have the main navigation of my wordpress pages but i need them to have individual css styles as below…
<ul id=”siteTop”>
<li id=”blogNav” class=”mainButs”>Page1
<li id=”workNav” class=”mainButs”>Page2
<li id=”aboutNav” class=”mainButs”>Page3
Currently i can only have..
<ul id=”siteTop”>
<li id=”blogNav” class=”mainButs”><?php wp_list_pages(‘title_li=’); ?>
How do i have individual links, any particular way within WordPress or do i have to hard code and write the actual links in myself?
Many thanks 🙂