List widgets
Change rating color
.reputon-amazon-reviews-widget .reputon-standard .reputon-rating-stars {color: green;}
/* сhange the color of the header rating */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-rating-stars {color: green;}
/* сhange the color of the header rating counter */
.reputon-amazon-reviews-widget .reputon-standard .reputon-count-number {color: green;}
/* сhange the color of the header rating stars */
.reputon-amazon-reviews-widget .reputon-standard .reputon-count-text {color: green;}
/* сhange the color of the review rating */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-body .reputon-rating-stars {color: green;}
Change customer name color
/* change name */
.reputon-amazon-reviews-widget .reputon-standard .reputon-name {color: green;}
/* change reviews name only*/
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-body .reputon-name {color: green;}
/* change header name only*/
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-name {color: green;}
Change publishing date color
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-date {color: green;}
Change border width, style and color
/* entire widget border */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-wrapper {border: 3px solid red;}
/* reviews body */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-body {border: 3px solid red;}
/* header border */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {
border: 3px solid red;
border-radius: 16px 16px 0 0;}
/* footer border */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-footer {
border: 3px solid red;
border-radius: 0 0 16px 16px;}



Change background color
/* reviews body background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {background: lightblue;}
/* around reviews body background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content {background: lightblue;}
/* header background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {background: lightblue !important;}
/* footer background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-footer {background: lightblue;}
/* Add this code to theme.liquid to change the widget section color. */
<style>
section:has(.reputon-amazon-reviews-widget .reputon-standard) {background: lightblue;}
</style> 



Change “Verified” icon color
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-verified-icon {color: green;}
Change widget font
/* change the font of the widget */
.reputon-amazon-reviews-widget .reputon-standard {font-family: Comic Sans MS !important;}
Hide customer name
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-name {display: none;}Hide review posting date
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-date {display: none;}Hide review rating stars
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-rating-stars {display: none;}Hide verified icons
.reputon-amazon-reviews-widget .reputon-standard .reputon-verified {display: none;}Hide content in header
/* hide header */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {display: none;}
/* hide amazon logo */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-image {display: none;}
/* hide seller name */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-name {display: none;}
/* hide rating */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-rating-stars {display: none;}
/* hide rating counter */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-count-number {display: none;}
/* hide rating stars */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-count-text {display: none;}
/* hide reviews counter */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-reviews-count {display: none;}Change divider
/* change color */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {border-bottom: 1px solid #EAEAEA;}
.reputon-amazon-reviews-widget .reputon-standard .reputon-card:last-child {border: none;}
/* hide divider */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {border: none;}Change image counter
/* change color */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-reviews-image-container::after {color: red;}
/* change background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-reviews-image-container::after {background: #ff00005e;}

Add margin above widget
.reputon-amazon-reviews-widget .reputon-standard {margin-top: 100px !important;}Add margin below widget
.reputon-amazon-reviews-widget .reputon-standard {margin-bottom: 100px !important;}Change widget width
.reputon-amazon-reviews-widget .reputon-standard {max-width: 400px !important;}Hide widget on mobile
@media (max-width: 460px) {
.reputon-amazon-reviews-widget .reputon-standard {
display: none !important;}}Change scroll color
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content::-webkit-scrollbar-thumb {
background: red;}
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content::-webkit-scrollbar-track {
background: black;}
Hide footer
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-footer {display: none;}Change widget height
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content {max-height: 200px;}
/* open all reviews without scroll */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content {max-height: none;}Apply black-and-white filter
.reputon-amazon-reviews-widget .reputon-standard {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?