Any way to put html links in the header nav area?

Permalink
Hi, I am using the dotAwesome dark theme and I have removed the autonav and header nav completely from the stacks. The nav is still showing. I have tried adding HTML to the header nav stack and it does nothing. I want to link to pages in another folder on this site but that folder is not within c5 so the autonav cannot find them to link to. I can code HTML and CSS but I do not know PHP so searching for answers has been difficult for me. Anyone know how I can use the CSS styling for the theme but put my own links in that nav bar? I added external links to the pages currently in the nav via the sitemap in the dashboard but it is a band-aid and does not look good. Any ideas?

This is the site so you can see what I mean with the nav.http://sketchncakes.com/
I want the main words: Flavors/Pricing, Ordering to link to the URLs in the dropdown and lose the dropdowns completely. I would also like to add links there to pages I will be making in the future so educating me on how to work in these files will be greatly appreciated!

Thanks! Erin

Erinsp1re8
 
Pluto replied on at Permalink Reply
Pluto
Just co to your site folder
then copy the view.php file from your_site.com/concrete/blocks/autonav
and then come to your root folder blo9ck directory
Cretae a folder named avutonav there and then paste the view.php file there
your_site.com/blocks/autonav
just delete the entire code. And do whatever ul > li structure you wand even whatever link you want in href you can pur it there
<ul>
<li>
<a href="http://yoursite.com">Home</a>
</li>
<li>
<a href="http://sketchncakes.com/">Flavors/Pricing</a>
</li>
<ul>
Erinsp1re8 replied on at Permalink Reply
Erinsp1re8
Thank you! I will give that a try. Appreciate the help!