I have a main navigation set up like so:
<r:navigation urls=“About:/about/| Blog:/blog/| Portfolio:/portfolio/”>
I would like for the Blog link to be root relative, meaning that
whereever the user is on the site, they will always go to a child of the
root when they click a link.
So if a person is on Custom Application Development Software for Business - Salesforce.com and they click the blog
link they should be taken to Custom Application Development Software for Business - Salesforce.com.
However the way it is working now, they would be taken to
Custom Application Development Software for Business - Salesforce.com.
This is due to the fact that the link created by the navigation tag
looks like this:
So, how can I get the navigation tag to maintain my forward slashes, and
thus allow root relative linking?
Cheers!
Ben