Try the Demo

Magento Forum

   
Images next each other
 
KarinaB
Jr. Member
 
Total Posts:  23
Joined:  2012-12-27
 

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

 
Magento Community Magento Community
Magento Community
Magento Community
 
gotini
Jr. Member
 
Total Posts:  3
Joined:  2013-02-01
 

It really depends on how the template is made. Using CSS or other method like tables (really old method though).

 Signature 

You can get lost in Vegas. Use this map of Las Vegas Strip.

 
Magento Community Magento Community
Magento Community
Magento Community
 
KarinaB
Jr. Member
 
Total Posts:  23
Joined:  2012-12-27
 

My template is f002 and my version is magento 1.3.2.4
Can you tell me more with these information?

 
Magento Community Magento Community
Magento Community
Magento Community
 
Lyonscg
Sr. Member
 
Avatar
Total Posts:  173
Joined:  2009-11-13
Chicago IL
 

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.

 Signature 

Andrew J.
Sr. Applications Engineer
Lyons Consulting Group

Lyons Consulting Group is the premier digital agency specializing in strategy, ux/design, development, and ongoing support. With a proven track record to deliver creative, robust and most importantly, increasingly profitable ecommerce sites, our diverse group of experts are committed to customer satisfaction and project excellence.

 
Magento Community Magento Community
Magento Community
Magento Community
 
KarinaB
Jr. Member
 
Total Posts:  23
Joined:  2012-12-27
 

Hello,I send you a PM
Thanks

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top