Review appearing massive

Topic summary

A user encountered an oversized “verified by” badge in their product reviews using the Stamped app on the Drop theme. The issue affected only the top review, while others displayed normally.

Solutions Provided:

Two approaches were offered:

  1. CSS injection method: Add custom CSS code to the theme.liquid file, placed above the </body> tag, to control the review element sizing.

  2. Direct CSS modification: Navigate to theme.css (line 332) and modify the img styling by changing width: 100% to width: auto in the existing image properties block.

Both solutions target the image sizing within the review component. The issue was resolved, with the user accepting one of the proposed solutions.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

Does anyone know how I can get this ‘verified by’ part of this review normal size? It looks massive. I use the ‘Stamped’ reviews app and my theme is 'Drop. Screenshot attached - the top one is the one with the massive verified, the second one (and all the others) look normal. www.salourlingerie.com

Hello @Holly18
Pleasr provide screenshot.

Hey @Holly18

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Go to online store ---------> themes --------------> actions ------> edit code------->theme.css ----> line number 332
search this code

img {
height: auto;
width: 100%;
max-width: 100%;
border: 0;
}

and replace with this code.

img {
height: auto;
width: auto;
max-width: 100%;
border: 0;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Thanks for accepting the solution.
Please hit like button also.