- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2019
03:56 AM
02-15-2019
03:56 AM
How to display 4 Products in One Column in Product Page?
How to display 4 Products in One Column in Product Page?
in my product page 3 products are displaying in one column. i want to display 4 product in one column so what changes i have to do?
i am using Magento 2.3
i am using default theme only.
Labels:
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2019
06:26 AM
02-18-2019
06:26 AM
Re: How to display 4 Products in One Column in Product Page?
Hello vital_ticks
You can do this with CSS. Please override below file in your theme and line number 290 - 295
Path : vendor/magento/theme-frontend-luma/Magento_Catalog/web/css/source/module/_listings.less
.products-grid .product-item { width: 100%/3 } .page-layout-1column .products-grid .product-item { width: 100%/3 } .page-layout-3columns .products-grid .product-item { width: 100%/3 } .page-products .products-grid .product-item { width: 100%/3 } .page-products.page-layout-1column .products-grid .product-item { width: 100%/3 } .page-products.page-layout-3columns .products-grid .product-item { width: 100%/3 } So you can copy this file into your theme directory, then change those widths like below. .products-grid .product-item { width: 100%/4 } .page-layout-1column .products-grid .product-item { width: 100%/4 } .page-layout-3columns .products-grid .product-item { width: 100%/4 } .page-products .products-grid .product-item { width: 100%/4 } .page-products.page-layout-1column .products-grid .product-item { width: 100%/4 } .page-products.page-layout-3columns .products-grid .product-item { width: 100%/4 }
Problem solved and help? Please give 'Kudos' and accept 'Answer as Solution'.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2019
08:19 AM
06-11-2019
08:19 AM
Re: How to display 4 Products in One Column in Product Page?
thanks boss