AbanteCart Community

General Topics => General Discussion => Topic started by: proFFioz on September 15, 2011, 08:00:17 AM

Title: How to change default display method
Post by: proFFioz on September 15, 2011, 08:00:17 AM
Hi
 Did someone help me?
Is there somehow I can make the default grid instead of list ?
Title: Re: How to change default display method
Post by: vstone on September 01, 2013, 03:49:58 PM
Did you ever get an answer this this question?  I posted something similar with no reply.
Title: Re: How to change default display method
Post by: abantecart on September 16, 2013, 08:58:59 AM
I assume you refer to HTML5 template on storefront.

Code for listing is located in the template file storefront/view/default_html5/template/pages/product/product_listing.tpl

and css in storefront/view/default_html5/stylesheet/style.css

Locate line:

Code: [Select]
/* listview*/
.list {
display: none
}

and replace with

Code: [Select]
/* listview*/
.grid {
display: none
}