Left align product reviews

Solved

Left align product reviews

houseof9
Excursionist
18 0 4

Does anyone know how l can left align my product review stars on my product pages on mobile view? They are currently centre aligned - see below. I am using prestige theme.

 

houseof9_0-1748653719616.png

 

 

Accepted Solution (1)
BiDeal-Discount
Shopify Partner
790 105 178

This is an accepted solution.

Oh I see the issue.

please replace the code with this code:

@media only screen and (max-width: 600px) {
    #shopify-section-template--16816236462178__main .tydal-reviews-star-rating {
        display: flex !important;
    }
}
- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp

View solution in original post

Replies 6 (6)

BiDeal-Discount
Shopify Partner
790 105 178

Hi @houseof9 

let try to add this custom CSS code:

@media only screen and (max-width: 600px) {
    #shopify-section-template--16816236462178__main .tydal-reviews-star-rating {
        display: flex;
    }
}

BiDealDiscount_0-1748657530917.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
houseof9
Excursionist
18 0 4

Thank you, unfortunately it did not work. I tried to add it to the theme.css file, is that the correct way? If so, it did not work.

 

BiDeal-Discount
Shopify Partner
790 105 178

can you add to your file theme.css to let me check why it not work?

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
houseof9
Excursionist
18 0 4

Thanks, I have just added it

BiDeal-Discount
Shopify Partner
790 105 178

This is an accepted solution.

Oh I see the issue.

please replace the code with this code:

@media only screen and (max-width: 600px) {
    #shopify-section-template--16816236462178__main .tydal-reviews-star-rating {
        display: flex !important;
    }
}
- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
houseof9
Excursionist
18 0 4

Thanks so much that worked!