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
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:
-
CSS injection method: Add custom CSS code to the theme.liquid file, placed above the
</body>tag, to control the review element sizing. -
Direct CSS modification: Navigate to theme.css (line 332) and modify the
imgstyling by changingwidth: 100%towidth: autoin 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.
Hello @Holly18
Pleasr provide screenshot.
Hey @Holly18
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
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.


