I have in my categories subcategories created.
I would now like to these images of the subcategories in 2 or 3 columns next to each other.
How do I do that?
Karina
You need to use CSS’s float property (If you’re using tables, you really should start over). Normally, you float each element left (float:left;) with the first in each row having an extra property (clear:left;).
Your CSS would look something like:
.container ul li { float:left; }
.container ul li.first { clear:left; }
then create one more special class “clear”. This class should have this propert “clear:both;” and append that to either the very last sub-category or to an empty div at the end of the list so the container doesn’t break or act weird in older browsers.
.clear { clear:both }
<div class="clear"></div>
I know this is vague, if you can send me a link to the actual site, I can help guide you through what needs to be done exactly.