This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Creating a UL & IMG based Navigation Bar
Here is the snippet from the Radius tags page for navigation:
<r:navigation urls="[Title: url | Title: url | ...]">
<r:normal><a href="<r:url />"><r:title /></a></r:normal>
<r:here><strong><r:title /></strong></r:here>
<r:selected><strong><a href="<r:url />"><r:title /></a></strong></r:selected>
<r:between> | </r:between>
</r:navigation>
Here’s the code augmented to work with a UL, LI images for each link, and a little obtrusive javascript to provide mouse-over image swapping. It assumes nav images are in a subfolder “images/menu” names like “news.gif” and highlighted versions like “news-hv.gif”
<ul>
<r:navigation urls="Title: /news | Title: /about | Title: /contact">
<r:normal>
<li><a href="<r:url />">
<img src="/images/menu<r:url/>.gif" alt="<r:url/>" onmouseover="javascript:this.src='/images/menu<r:url />-hv.gif'" onmouseout="javascript:this.src='/images/menu<r:url />.gif'"/>
</a></li>
</r:normal>
<r:here>
<li><a href="<r:url />">
<img src="/images/menu<r:url/>-hv.gif" alt="<r:url/>" />
</a></li>
</r:here>
<r:selected>
<li><a href="<r:url />">
<img src="/images/menu<r:url/>-hv.gif" alt="<r:url/>" />
</a></li>
</r:selected>
<r:between></r:between>
</r:navigation>
</ul>






