In my Magento Go store, I am showcasing products using CSS only. Currently, the loop is set to display 5 products in a row and then close the <ul>
tag. However, if there are more products, a new <ul>
element is created. My fixed width only allows for 3 <li>
items on each row. The issue is that on the second row, only two items are displayed before the next <ul>
moves to the next line. I want all rows to have 3 items displayed.
I have attempted solutions like adding inline-block and vertical align-top to the <ul>
, as well as ensuring list items are vertically aligned to the top, using float:left and display:inline-block, but haven't been successful in resolving this issue.
If anyone could provide assistance, I would be extremely grateful. Here is the URL:
Kind Regards, Ahmar