I am using the wonderful Slickmap template to start creating a tree for a friend but cannot work out how to have multiple lines of text within the same <li>
tag. Basically the first 5 items should be within the same box and then the last two in separate boxes. I've tried all variants of <br>
I can think of including adding a
after the <br>
but nothing seems to work. Is it possible and if so how?
<ul>
<li><a href="/acceptance">Acceptance</a></br>
<a href="/IPC-DRM-PTH">IPC-DRM-PTH</a></br>
<a href="/IPC-A-610">IPC-A-610</a></br>
<a href="/IPC-9191">IPC-9191</a></br>
<a href="/IPC-DRM-SMT">IPC-DRM-SMT</a></br>
<a href="/Posters">Posters</a></br>
</li>
<li><a href="/mission">Mission Statement</a></li>
<li><a href="/principals">Principals</a></li>
</ul>
. Have you tried making the links block display in css? – Phix Mar 30 '13 at 19:42