Is this possible? Horizontal listings rather than vertical?

ryancbarnes

Member
So I saw on another website awhile ago, that their listings went left to right, top to bottom in a 3 column, 4 row layout. I dont remember the website off the top of my head, but I've got a developer who is willing to help me design my site's theme, and that is one of the features I would like to see him try to incorporate. So before I go asking him to design it, I'd like to know if it's even possible with this software.
 

Basti

Administrator
Staff member
Yes thats possible, simply give each container a
float: left;
or
display: inline-block;

for the later use this to make it browser compatible
display: -moz-inline-stack;
display: inline-block;
zoom:1;
*display:inline;

with a fixed width and best height as well
 
Top