I'm using <ul>
to list each of the members, and giving each of the <li>
float: left
. What I'm trying to achieve is to have 3 members on a row, then break. How do I achieve this without using a table layout or manually specifying the coordinates for each of them?
2 answers
points

http://www.workalone.co.uk/network/index.htm
Should help if you dig about in the CSS, basically you need to set heigt and width on the members boxes.
- Thanks for the help again!
points
You just need to clear the floats.
Try inserting <div style="clear:both;"></div>
in between the closing </ul>
& </div>
of each "row".
example:
</ul><div style="clear:both;"></div>