Product display

Solved

Product display

papabill
Tourist
3 0 1

I am having an issue with how my products display.  When the page loads, they will be in rows, and then they change to a single column. I am using the theme "Dawn". I had just changed to this theme because my previous theme was having other issues. I have gone into product grid and set that to 6, but makes no difference. Any ideas on how to correct this? Thanks!

Accepted Solution (1)
BSSCommerce-HDL
Shopify Partner
2305 835 909

This is an accepted solution.

Hi @papabill 

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag: 

<style>
        .grid.product-grid.grid--4-col-desktop.grid--2-col-tablet-down {
            display: flex!important
}
        .product.product--large.product--left.product--stacked.product--mobile-hide.grid.grid--1-col.grid--2-col-tablet {
            display: flex!important;
        }
    </style>

 Here is result:

BSSCommerceHDL_0-1723473782676.pngBSSCommerceHDL_1-1723473800795.png

Hope this can help you, If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 7 (7)

BSS-TekLabs
Shopify Partner
2401 695 832

Hello @papabill 
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
papabill
Tourist
3 0 1
papabillspsp.com

Acme
Shopify Partner
69 8 13

Hi, @papabill 
Could you please share your store url(password)?

papabill
Tourist
3 0 1

papabillspsp.com

 

Acme
Shopify Partner
69 8 13

1. Go to online store -> theme -> edit code.

2. Open component-slider.css and then find out follow block, add "display: flex"

@media screen and (min-width: 990px) {

    .slider-component-full-width .slider--desktop {

         scroll-padding-left: 1.5rem;

         display: flex;

     }

}

BSSCommerce-HDL
Shopify Partner
2305 835 909

This is an accepted solution.

Hi @papabill 

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag: 

<style>
        .grid.product-grid.grid--4-col-desktop.grid--2-col-tablet-down {
            display: flex!important
}
        .product.product--large.product--left.product--stacked.product--mobile-hide.grid.grid--1-col.grid--2-col-tablet {
            display: flex!important;
        }
    </style>

 Here is result:

BSSCommerceHDL_0-1723473782676.pngBSSCommerceHDL_1-1723473800795.png

Hope this can help you, If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

BSS-TekLabs
Shopify Partner
2401 695 832

- Here is the solution for you @papabill 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the base.css or theme.css file.
- Then add the following code at the end of the file and press 'Save' to save it.

@media only screen and (min-width: 600px) {
 .grid.product-grid {
display: grid !important;
    grid-template-columns: auto auto auto auto auto auto !important;
}
.grid__item.slider__slide {
 max-width: 94% !important;
}
}

- Here is the result you will achieve:

BSSTekLabs_0-1723473500509.png

 

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now