Close

4 coloums on category page

ejazmuhammad
11 years ago
#1604 Quote
Avatar
  • 6
Hi,

I have just purchased the theme how to show at least 4 columns instead of three on category page
IvanStoyanov
11 years ago
#1610 Quote
Avatar
  • Moderator
  • 269
ejazmuhammad wrote:
Hi,

I have just purchased the theme how to show at least 4 columns instead of three on category page


Hi ejazmuhammad.

To show 4 columns on a category page go to /Themes/Fashion/Views/Catalog/CategoryTemplate.ProductsInGridOrLines.cshtml
go to line 167 and change
 @(Html.DataList<ProductOverviewModel>(Model.Products, 3,

to
 @(Html.DataList<ProductOverviewModel>(Model.Products, 4,


PS: You need to configure the css styles of the theme and some of the plugins in order for this to look good.
Thank you for choosing our products! Your feedback is important to us!
ejazmuhammad
11 years ago
#1611 Quote
Avatar
  • 6
thanks