Small / minimized compact rating widget
Remove widget elements
/* remove logo */
.reputon-etsy-reviews-widget .reputon-small .reputon-image {display: none;}
/* remove rating count */
.reputon-etsy-reviews-widget .reputon-small .reputon-rating-count {display: none;}
/* remove rating stars */
.reputon-etsy-reviews-widget .reputon-small .reputon-rating-stars {display: none;}
/* remove reviews count */
.reputon-etsy-reviews-widget .reputon-small .reputon-reviews-count {display: none;}



Change widget main color
.reputon-etsy-reviews-widget .reputon-small .reputon-container {color: red;}
Change reviews count color
.reputon-etsy-reviews-widget .reputon-small .reputon-reviews-count {color: red;}
Apply black-and-white filter
.reputon-etsy-reviews-widget .reputon-small {filter: grayscale(100%);}
Center content
.reputon-etsy-reviews-widget .reputon-small .reputon-content {align-items: center;}
Change background color
.reputon-etsy-reviews-widget .reputon-small .reputon-container {background: antiquewhite;}
.reputon-etsy-reviews-widget .reputon-small .reputon-bt-close {background: antiquewhite;}
/* change color on hover at element */
.reputon-etsy-reviews-widget .reputon-small .reputon-container:hover {background: wheat;}
/* To change the background color of the widget section, add this code to your theme.liquid file. */
<style>
section:has(.reputon-etsy-reviews-widget .reputon-small) {background: bisque;}
</style> 
Move the widget
/* move to the start of the block */
.reputon-etsy-reviews-widget {justify-content: flex-start !important;}
.reputon-etsy-reviews-widget .reputon-small {margin: 0 !important;}
/* move to the end of the block */
.reputon-etsy-reviews-widget {justify-content: flex-end !important;}
.reputon-etsy-reviews-widget .reputon-small {margin: 0 !important;}
/* center on mobile */
@media (max-width: 640px) {.reputon-etsy-reviews-widget .reputon-small .reputon-badge {transform-origin: center;}}Questions about CSS or need assistance? We're excited to help: support@reputon.com or live chat.
Last updated
Was this helpful?