# Cards widget

### Change rating color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change name color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change caption color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change review text color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change date color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change avatar size

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-cards .reputon-image-container {padding-top: 50%;}
```

{% endcode %}

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

***

### Change border color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-cards .reputon-card .reputon-top-part {border: 3px solid orange;}
```

{% endcode %}

<figure><img src="/files/2956HsrY7hIbvloHe3C6" alt=""><figcaption></figcaption></figure>

***

### Change review card background color

{% code overflow="wrap" %}

```css
.reputon-testimonials-widget .reputon-cards .reputon-card .reputon-top-part {background: skyblue;}
```

{% endcode %}

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

***

### Change widget font

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Hide customer name

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Hide caption

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Hide logo

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/49xmU3ARIsDRfcAWUHu5" alt=""><figcaption></figcaption></figure>

***

### Hide date

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Hide rating

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Hide avatar

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Always open reviews

{% code overflow="wrap" %}

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

{% endcode %}

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

***

### Change “Show more” button

{% code overflow="wrap" %}

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

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

{% endcode %}

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

***

### Change “Leave a Review” button

{% code overflow="wrap" %}

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

/* borders */
.reputon-testimonials-widget .reputon-cards .reputon-bt.reputon-leave-review 
{border: 3px solid red;}

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

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

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

/* remove button */
.reputon-testimonials-widget .reputon-cards .reputon-bt.reputon-leave-review 
{display: none;}
```

{% endcode %}

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

***

### Change “Load more” button

{% code overflow="wrap" %}

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

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

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

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

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

/* remove button */
.reputon-testimonials-widget .reputon-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="cards"] {max-width: 800px !important;}
```

{% endcode %}

***

### Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

### Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

### **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

### Color the widget

{% code overflow="wrap" %}

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

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

{% endcode %}

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

***

### Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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

***

**Questions about CSS or need assistance? We're excited to help:** [**support@reputon.com**](mailto:support@reputon.com) **or** [**live chat**](https://go.crisp.chat/chat/embed/?website_id=d24ef16e-6e05-49e9-bd59-a6f3bde0658a)**.**


---

# Agent Instructions: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
