Forum Moderators: open
this outputs a set of about 10 links that look like this in the code
ul>
<li>
link
<br/>
link
<br/>
link
<br/>
</li>
</ul>
It works but I need the code to look like this for it to function right.
ul>
<li>
link
</li>
<li>
link
</li>
<li>
link
</li>
</ul>
how do i code that using the [Navigation] Variable
thanks a ton
Hope I am explaining this right
thanks
I'm not sure what kind of dynamic technology you are using. As a simplistic approach, can you store that list of links with the <li></li> markup included in the list, rather than having the <li></li> included in the static html?
At any rate, the challenge you face is not in the html itself, but in the interaction with whatever dynamic technology you are using.