Star Ratings position on Featured Collection Mobile & Desktop

Solved

Star Ratings position on Featured Collection Mobile & Desktop

HereNowOwner
Excursionist
16 0 3

Hi everyone,

 

I'm trying to reposition the star ratings widget on the featured collection on mobile & desktop. After activating this widget through the Judge.Me app I haven't been able to position it correctly through the settings / code. 

Below the screenshots of the desktop & mobile positions of the review widget and the location I would like it to so it aligns again with the rest. 

Mobile: 
Move star rating widget down and price position up so that price is aligned again and star rating are on the bottom of the product preview.

WhatsApp Image 2025-03-04 at 14.53.54.jpeg

 Desktop:
Move star rating to the centre under the product and move price to original position so it aligns again with the rest.

review location.png
Could anyone help me how this could be re-alligned through some code? 
Thanks in advance!!

Store: https://herenowbrand.com/

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @HereNowOwner 

Check this one. 

But got problem with the count ratings on the mobile.

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

div.card__information > div {
    display: flex;
    justify-content: space-around;
}

div.card__information > div .rating {
    margin-top: -8px !important;
}

div.card__information > div p.rating-count.caption {
    margin-top: -4px !important;
}
@media only screen and (max-width: 749px){
div.card__information > div {
    display: flex;
    justify-content: space-around;
    flex-direction: column-reverse;
    gap: 5px;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1741112857597.pngMade4uoRibe_1-1741112874636.png

     

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @HereNowOwner 

Check this one. 

But got problem with the count ratings on the mobile.

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

div.card__information > div {
    display: flex;
    justify-content: space-around;
}

div.card__information > div .rating {
    margin-top: -8px !important;
}

div.card__information > div p.rating-count.caption {
    margin-top: -4px !important;
}
@media only screen and (max-width: 749px){
div.card__information > div {
    display: flex;
    justify-content: space-around;
    flex-direction: column-reverse;
    gap: 5px;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1741112857597.pngMade4uoRibe_1-1741112874636.png

     

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
HereNowOwner
Excursionist
16 0 3

Hi @Made4uo-Ribe 

Thanks a lot for the fast reply. This indeed is almost spot-on. I've already implemented it and it looks 10x better. I would still like to have the counter in the same row as the stars on mobile. If you do still find a solution for that please share it 🙂 

Made4uo-Ribe
Shopify Partner
10036 2387 3013

There is a solution for this, but it requires editing the Liquid code. This is not the first time I’ve encountered this issue—another store owner had the same problem. The rating count is in a different container than the stars (image), which causes this result.

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.