List widget
Change rating color
.reputon-testimonials-widget .reputon-list .reputon-rating-stars {color: dodgerblue;}

Change name color
.reputon-testimonials-widget .reputon-list .reputon-name {color: red;}

Change caption color
.reputon-testimonials-widget .reputon-list .reputon-caption {color: red;}

Change review text color
.reputon-testimonials-widget .reputon-list .reputon-reviews-text {color: dodgerblue;}

Change border width, style and color
/* entire widget border */
.reputon-testimonials-widget .reputon-list {border: 3px solid red;}
/* reviews border */
.reputon-testimonials-widget .reputon-list .reputon-single-review {border: 3px solid red;}
/* reviews body */
.reputon-testimonials-widget .reputon-list .reputon-reviews-body {border: 3px solid red;}

Change background color
/* widget background */
.reputon-testimonials-widget .reputon-list .reputon-list-container {background: antiquewhite;}
/* reviews background */
.reputon-testimonials-widget .reputon-list .reputon-single-review {background: antiquewhite;}
/* reviews body background */
.reputon-testimonials-widget .reputon-list .reputon-reviews-body {background: antiquewhite;}
/* To change the widget section color, add this code to theme.liquid */
<style>
section:has(.reputon-testimonials-widget .reputon-list .reputon-standard) {background: bisque;}
</style>

Change widget font
.reputon-testimonials-widget .reputon-list {font-family: 'Comic Sans MS' !important;}

Hide customer name
.reputon-testimonials-widget .reputon-list .reputon-single-review .reputon-name {display: none;}
Hide caption
.reputon-testimonials-widget .reputon-list .reputon-single-review .reputon-caption {display: none;}
Change “Leave a Review” button
/* regular state color */
.reputon-testimonials-widget .reputon-list .reputon-leave-review
{color: #fff; background: red;}
/* borders */
.reputon-testimonials-widget .reputon-list .reputon-leave-review
{border: 3px solid red;}
/* hover, active states color */
.reputon-testimonials-widget .reputon-list .reputon-leave-review:hover,
.reputon-testimonials-widget .reputon-list .reputon-leave-review:not([disabled]):active,
.reputon-testimonials-widget .reputon-list .reputon-leave-review:not([disabled]):active
{color: #fff; background: brown;}
/* customize text */
.reputon-testimonials-widget .reputon-list .reputon-leave-review.editable:after
{content: 'your text';}
/* 'load more' button font */
.reputon-testimonials-widget .reputon-list
.reputon-leave-review.editable:after {font-family: Comic Sans MS;}
/* remove button */
.reputon-testimonials-widget .reputon-list .reputon-leave-review
{display: none;}

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