Menu like NAV_LIST but starting deeper
Posted: Wed 9. Apr 2008, 18:45
I'm doing a multilingual site and I have to do a tabbed menu similar to the one I get with the RT NAV_LIST_TOP, with the difference that I need it starting at the second level.
I have the following site structure:
And I need the following rendering (CSS Format obviously):
Or in HTML:
And the other language:
How can I achieve this?
Thanks
I have the following site structure:
Code: Select all
Home
English
About us
Products
Services
Contact us
Spanish
Nosotros
Productos
Servicios
Contacto
Code: Select all
________ ________ ________ ________ __________
/English\ /About us\ /Products\ /Services\ /Contact us\
Code: Select all
<ul class="">
<li><a href="">English</a></li>
<li><a href="">About us</a></li>
<li><a href="">Products</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact us</a></li>
</ul>
Code: Select all
<ul class="">
<li><a href="">Spanish</a></li>
<li><a href="">Nosotros</a></li>
<li><a href="">Productos</a></li>
<li><a href="">Servicios</a></li>
<li><a href="">Contacto</a></li>
</ul>
Thanks