Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Links in header

Quote Reply
Links in header
I accidentally hard coded the links in my header a while back without taking in consideration whether or not I wanted it setup for dynamic, static, or php surfing. What should the code be in the header, like for home, add link, top rated, modify link, and search, so if the surfer is surfing from a static link, it will remain that way if they navigate by the header links. Or if I have it dynamically?

Right now, surfing my site from a static link, this is the code on the home header link:

http://www.mydomain.com/...ARRAY%280x80cde34%29

Thanks,
Quote Reply
Re: [Chrisp] Links in header In reply to
Hi,

The links should be:

<a href="<%build_root_url%>">Home</a>
<a href="<%build_new_url%>">New</a>
<a href="<%build_cool_url%>">Cool</a>

etc. Have a look at:

http://www.gossamer-threads.com/...sql2/admin/admin.cgi

(admin/admin to get in), and look at include_menu.html template for all of them.

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] Links in header In reply to
Thanks Alex! Works great.