Small/minimized compact rating widget

Change rating color

/* change rating counter */
.reputon-amazon-reviews-widget .reputon-small .reputon-rating-count {color: green;}

/* change rating stars */
.reputon-amazon-reviews-widget .reputon-small .reputon-rating-stars {color: green;}

Change reviews count color

.reputon-amazon-reviews-widget .reputon-small .reputon-reviews-count {color: red;}

Change background color

.reputon-amazon-reviews-widget .reputon-small .reputon-container {background: antiquewhite;}
	
/* change close button color */
.reputon-amazon-reviews-widget .reputon-small .reputon-bt-close {background: antiquewhite;}

/* change color when hover at element */
.reputon-amazon-reviews-widget .reputon-small .reputon-container:hover {background: wheat;}

/* Add this code to theme.liquid to change the widget section color. */
<style> 
	section:has(.reputon-amazon-reviews-widget .reputon-small) {background: bisque;}
</style> 

Remove widget elements

/* remove logo */
.reputon-amazon-reviews-widget .reputon-small .reputon-image {display: none;}

/* remove rating count */
.reputon-amazon-reviews-widget .reputon-small .reputon-rating-count {display: none;}

/* remove rating stars */
.reputon-amazon-reviews-widget .reputon-small .reputon-rating-stars {display: none;}

/* remove reviews count */
.reputon-amazon-reviews-widget .reputon-small .reputon-reviews-count {display: none;}

Add margin above widget

.reputon-amazon-reviews-widget .reputon-small .reputon-badge {margin-top: 100px !important;}

Add margin below widget

.reputon-amazon-reviews-widget .reputon-small .reputon-badge {margin-bottom: 100px !important;}

Move widget

/* move to the start of the block */
.reputon-amazon-reviews-widget {justify-content: flex-start !important;}
.reputon-amazon-reviews-widget .reputon-small {margin: 0 !important;}

/* move to the end of the block */
.reputon-amazon-reviews-widget {justify-content: flex-end !important;}
.reputon-amazon-reviews-widget .reputon-small {margin: 0 !important;}

/* center on mobile */
@media (max-width: 640px) {
  .reputon-amazon-reviews-widget .reputon-small .reputon-badge {
    transform-origin: center;}}

Apply black-and-white filter

.reputon-amazon-reviews-widget .reputon-small {filter: grayscale(100%);}

Questions about CSS or need assistance? We're excited to help: support@reputon.com or live chat.

Last updated

Was this helpful?