well i am using a package called infoglue to create this website so im not sure if you are familiar with it but here is the code that is creating the navigation bar:
<div id="Nav1">
<span class="Nav1Text">
<table border = "0" align="$templateLogic.componentLogic.getPropertyValue("alignment")">
<tr>
<td>
#foreach($webpage in $templateLogic.getComponentLogic().getBoundPages("pages"))
<a href="$webpage.url" class="Nav1TextLink">$webpage.navigationTitle</a>
#end
</td>
</tr>
</table>
basically it is a table, with a single row and the #foreach part is simply iterating through the directories added to the navigation list. which then places the title as a link within a <td> tag. what i want is for a link to wrap to the next line if it it runs over. so that i dont have links going over 2 lines.
regards,
chris