> For the complete documentation index, see [llms.txt](https://reputon.gitbook.io/reputon-help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reputon.gitbook.io/reputon-help/testimonials-slider-app/custom-style-codes/colored-cards-widget.md).

# Colored cards widget

### Change rating color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-rating-stars {color: dodgerblue;}
```

{% endcode %}

<figure><img src="/files/4c7r7zZC4gE6QgS7RZdb" alt=""><figcaption></figcaption></figure>

***

### Change name color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-name {color: red;}
```

{% endcode %}

<figure><img src="/files/czuDjzDMZ2amIVbsFg6M" alt=""><figcaption></figcaption></figure>

***

### Change caption color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-caption {color: red;}
```

{% endcode %}

<figure><img src="/files/MxLIsgBRZyNvzk3e8rJU" alt=""><figcaption></figcaption></figure>

***

### Change review text color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-text {color: dodgerblue;}
```

{% endcode %}

<figure><img src="/files/M1jgvJfhpJYMFFUGe7NM" alt=""><figcaption></figcaption></figure>

***

### Change date color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-date {color: dodgerblue;}
```

{% endcode %}

<figure><img src="/files/jSsh39uvRl4NwR1UcSTe" alt=""><figcaption></figcaption></figure>

***

### Change border color

{% code overflow="wrap" %}

```css
/* add and color border */
.reputon-testimonials-widget .reputon-colored_cards .reputon-top-part {border: 3px solid orange;}
```

{% endcode %}

<figure><img src="/files/1OKQcYa5jkki6nCmXt8d" alt=""><figcaption></figcaption></figure>

***

### Change background color

{% code overflow="wrap" %}

```css
/* color reviews */
.reputon-testimonials-widget .reputon-colored_cards .reputon-top-part {background: skyblue;}
```

{% endcode %}

<figure><img src="/files/Vnu0Xfb2OYVusB6pLEIl" alt=""><figcaption></figcaption></figure>

***

### Change avatar size

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-image {width: 70px; height: 70px;}
```

{% endcode %}

<figure><img src="/files/AOgqiduSmj1RTLpzd46E" alt=""><figcaption></figcaption></figure>

***

### Change widget font

```css
.reputon-testimonials-widget .reputon-colored_cards {font-family: 'Comic Sans MS' !important;}
```

<figure><img src="/files/CeaYi6AI87Gq9qv6YSa4" alt=""><figcaption></figcaption></figure>

***

### Hide customer name

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-name {display: none;}
```

{% endcode %}

<figure><img src="/files/ajPxN5ZOJzr8frNSmacK" alt=""><figcaption></figcaption></figure>

***

### Hide caption

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-caption {display: none;}
```

{% endcode %}

<figure><img src="/files/rbc0i8Pn2GAoqFFiqgbl" alt=""><figcaption></figcaption></figure>

***

### Hide logo

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-review-logo {display: none;}
```

{% endcode %}

<figure><img src="/files/jaNfVA6wvZbdYWZoWe7p" alt=""><figcaption></figcaption></figure>

***

### Hide date

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-date {display: none;}
```

{% endcode %}

<figure><img src="/files/3DfrOGAP1QbuC7utZDYa" alt=""><figcaption></figcaption></figure>

***

### Hide rating

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-rating-stars {display: none;}
```

{% endcode %}

<figure><img src="/files/UUiKjIftOIdeLUOPF4CA" alt=""><figcaption></figcaption></figure>

***

### Hide avatar

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-single-review .reputon-image {display: none;}
```

{% endcode %}

<figure><img src="/files/198gz7Zrku48q10RsnBu" alt=""><figcaption></figcaption></figure>

***

### Always open reviews

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards .reputon-show-more 
{display: none;}
.reputon-testimonials-widget .reputon-colored_cards .reputon-text 
{-webkit-line-clamp: unset; mask-image: none;}
```

{% endcode %}

<figure><img src="/files/XQMuQjBFvPfWSQOF8dhJ" alt=""><figcaption></figcaption></figure>

***

### Change “Show more” button

{% code overflow="wrap" %}

```css
/* change color */
.reputon-testimonials-widget .reputon-colored_cards .reputon-show-more {color: red;}

/* change underline */
.reputon-testimonials-widget .reputon-colored_cards .reputon-show-more span {text-decoration: none;}
```

{% endcode %}

<figure><img src="/files/XxNLmXAt9kUGfXc4SNOX" alt=""><figcaption></figcaption></figure>

***

### Change “Leave a Review” button

{% code overflow="wrap" %}

```css
/* regular state color */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review {color: #fff; background: red;}

/* borders */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review {border: 3px solid red;}

/* hover, active states color */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review:hover,
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review:not([disabled]):active,
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review:not([disabled]):active {color: #fff; background: brown;}

/* customize text */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review.editable:after {content: 'your text';} 

/* 'load more' button font */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder
.reputon-leave-review.editable:after {font-family: Comic Sans MS;}

/* remove button */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-leave-review {display: none;}
```

{% endcode %}

<figure><img src="/files/wrsaMZFHAGMhrE66NRbT" alt=""><figcaption></figcaption></figure>

***

### Change “Load more” button

{% code overflow="wrap" %}

```css
/* regular state color */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more {color: #fff; background: red;}

/* borders */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more {border: 3px solid red;}

/* hover, active states color */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more:hover,
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more:not([disabled]):active,
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more:not([disabled]):active {color: #fff; background: brown;}

/* customize text */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more.editable:after {content: 'your text';} 

/* 'load more' button font */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder
.reputon-load-more.editable:after {font-family: Comic Sans MS;}

/* remove button */
.reputon-testimonials-widget .reputon-colored_cards.reputon-reviews-holder .reputon-load-more {display: none;}
```

{% endcode %}

<figure><img src="/files/wrsaMZFHAGMhrE66NRbT" alt=""><figcaption></figcaption></figure>

***

### Change widget max-width

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget[data-type="colored_cards"] {max-width: 800px !important;}
```

{% endcode %}

***

### Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards {margin-top: 200px !important;}
```

{% endcode %}

***

### Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards {margin-bottom: 200px !important;}
```

{% endcode %}

***

### Hide widget on mobile

{% code overflow="wrap" %}

```css
@media (max-width: 460px) { 
  .reputon-testimonials-widget .reputon-colored_cards { 
		display: none !important;}}
```

{% endcode %}

***

### Color the widget

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards {background: bisque;}

/* To change the widget section color, add this code to theme.liquid */
<style> 
section:has(.reputon-testimonials-widget .reputon-colored_cards) {
background: bisque;}
</style> 
```

{% endcode %}

<figure><img src="/files/QYhNrWZuqPpJ9N7JMGsY" alt=""><figcaption></figcaption></figure>

***

### Apply black-and-white filter

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-colored_cards {filter: grayscale(100%);}
```

{% endcode %}

<figure><img src="/files/0sL9G6zL4siWC2yMe7sQ" alt=""><figcaption></figcaption></figure>

***

{% hint style="info" icon="comments-question-check" %}
**Have questions or need help with CSS? Contact us at** [**support@reputon.com**](mailto:support@reputon.com) **or** [**live chat**](https://go.crisp.chat/chat/embed/?website_id=d24ef16e-6e05-49e9-bd59-a6f3bde0658a)
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://reputon.gitbook.io/reputon-help/testimonials-slider-app/custom-style-codes/colored-cards-widget.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
