List widget
Change rating stars color
/* change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-feedback .reputon-feedback-text {color: dodgerblue;}
/* change the color of the feedback counter in seller widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-feedback .reputon-feedback-counter {color: dodgerblue;}
/* HEADER - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head .reputon-feedback-text {color: dodgerblue;}
/* CARDS - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-card .reputon-feedback-text {color: dodgerblue;}
/* change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-rating-stars {color: dodgerblue;}
/* HEADER - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head .reputon-rating-stars {color: dodgerblue;}
/* CARDS - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-standard .reputon-card .reputon-rating-stars {color: dodgerblue;}



Change customer name color
.reputon-ebay-reviews-widget .reputon-standard .reputon-card .reputon-name {color: brown;}

Change publishing date color
.reputon-ebay-reviews-widget .reputon-standard .reputon-card .reputon-date {color: brown;}

Change review text color
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body .reputon-text {color: brown;}

Change border width, style and color
/* entire widget border */
.reputon-ebay-reviews-widget .reputon-standard .reputon-standard-container {border: 3px solid red;}
/* reviews border */
.reputon-ebay-reviews-widget .reputon-standard .reputon-single-review {border: 3px solid red;}
/* header border */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head {border: 3px solid red;}
/* footer border */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-footer {border: 3px solid red;}




Change background color
/* reviews background */
.reputon-ebay-reviews-widget .reputon-standard .reputon-single-review {background: #b8ddd1;}
/* reviews body background */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body {background: #b8ddd1;}
/* header background */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head {background: #b8ddd1;}
/* footer background */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-footer {background: #b8ddd1;}
/* Add this code to theme.liquid to change the widget section color. */
<style>
section:has(.reputon-ebay-reviews-widget .reputon-standard) {background: #b8ddd1;}}
</style>




Change widget font
.reputon-ebay-reviews-widget .reputon-standard {font-family: Comic Sans MS !important;}

Remove some header blocks in widget
/* remove entire header */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head {display: none;}
/* hide reviews count block */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head .reputon-reviews-count {display: none;}
/* hide logo */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head .reputon-image {display: none;}
/* hide rating */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-head .reputon-rating {display: none;}




Remove footer
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-footer {display: none;}

Hide review rating
.reputon-ebay-reviews-widget .reputon-standard .reputon-card .reputon-rating {display: none;}
Change widget width
.reputon-ebay-reviews-widget .reputon-standard {max-width: 500px !important;}
Add margin above widget
.reputon-ebay-reviews-widget .reputon-standard {margin-top: 100px !important;}
Add margin below widget
.reputon-ebay-reviews-widget .reputon-standard {margin-bottom: 100px !important;}
Change widget heigh
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body {
height: 200px;}
/* open all reviews without scroll */
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body {
max-height: none;}


Hide widget on mobile
@media (max-width: 460px) {
.reputon-ebay-reviews-widget .reputon-standard {display: none !important;}}
Change scroll color
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body::-webkit-scrollbar-thumb {background: red;}
.reputon-ebay-reviews-widget .reputon-standard .reputon-reviews-body::-webkit-scrollbar-track {background: black;}

Apply black-and-white filter on photos
.reputon-ebay-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?