AbanteCart Community

Shopping Cart Operations => Support => Topic started by: sanax on September 09, 2013, 12:33:45 PM

Title: Need help with the product listing page
Post by: sanax on September 09, 2013, 12:33:45 PM
First of all, I would like to say this is the BEST shopping cart platform out there!... and trust me, I tried them all!

Congrats to the developers!!

Here's my question. I would like to 'reorder' or fix my layout of the product listing page. My attribute values are too long and you can't read it all. (I can try to shorten it a bit)

Is there a way to move the attributes below the image? I know it must a .tpl page where I can move it around?

I'm just starting out with my site. Have a look at the 'Kevin Harvick' art print listing as an example. My website is www[dot]artdropshipping[dot]com

TIA!
Title: Re: Need help with the product listing page
Post by: abantecart on September 09, 2013, 02:07:15 PM
You can edit template file storefront/view/default/template/pages/product/product.tpl to rearrange HTML in your product details page

Look for section

Code: [Select]
<div class="product_options">
<div class="top">
<div class="left"></div>
<div class="right"></div>
<div class="center"></div>
</div>
....

move this section somewhere after this :

Code: [Select]
<div class="middle_content">
.....
        </div>
Title: Re: Need help with the product listing page
Post by: sanax on September 09, 2013, 02:23:23 PM
Thank you, I will try it and report back!