# List widget

## Change rating color

{% code overflow="wrap" %}

```css
/* сhange rating color */
.reputon-etsy-reviews-widget .reputon-standard .reputon-rating-stars {color: red;}

/* сhange header rating color */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-rating-stars {color: red;}

/* сhange review rating color */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-rating-stars {color: red;}

/* сhange header rating counter color */
.reputon-etsy-reviews-widget .reputon-standard .reputon-count-number {color: red;}

/* сhange header rating stars color */
.reputon-etsy-reviews-widget .reputon-standard .reputon-count-text {color: red;}
```

{% endcode %}

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

***

## Change Etsy logo color

{% code overflow="wrap" %}

```css
/* header */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-header-logo {color: green;}

/* footer */
.reputon-etsy-reviews-widget .reputon-standard .reputon-footer .reputon-link svg {color: red;}
```

{% endcode %}

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

***

## Change name color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-name {color: red;}

/* change reviews name only */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-name {color: red;}

/* change header name onl y*/
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-name {color: red;}
```

{% endcode %}

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

***

## Change publishing date color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-date {color: dodgerblue;}
```

{% endcode %}

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

***

## Change review text color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-text {color:  dodgerblue;}
```

{% endcode %}

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

***

## Change reviews counter color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-count {color: red;}
```

{% endcode %}

<figure><img src="/files/72Aujnpgx8u6pWcDjN6T" alt=""><figcaption></figcaption></figure>

***

## Change “Verified” icon color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-verified-icon {color: green;}
```

{% endcode %}

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

***

## Change **border width, style and color**

{% code overflow="wrap" %}

```css
/* entire widget border */
.reputon-etsy-reviews-widget .reputon-standard {border: 3px solid red;}

/* reviews border */
.reputon-etsy-reviews-widget .reputon-standard .reputon-single-review {border: 3px solid red;}

/* reviews body */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body {border: 3px solid red;}

/* header border */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head {
  border: 3px solid red;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;}

/* footer border */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-footer {
  border: 3px solid red;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;}
```

{% endcode %}

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

***

## Change **background color**

{% code overflow="wrap" %}

```css
/* reviews background */
.reputon-etsy-reviews-widget .reputon-standard .reputon-single-review {background: antiquewhite;}

/* reviews body background */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body {background: antiquewhite;}

/* header background */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head {background: antiquewhite;}

/* footer background */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-footer {background: antiquewhite;}

/* To change the background color of the widget section, add this code to your theme.liquid file. */
<style> 
	section:has(.reputon-etsy-reviews-widget .reputon-standard) {background: bisque;}
</style> 
```

{% endcode %}

Single review

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

Reviews body

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

Header and footer

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

***

## Change widget font

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard {font-family: 'Comic Sans MS' !important;}
```

{% endcode %}

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

***

## Center header title and reviews counter

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-name {text-align: center;}

.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-header-info {flex-direction: column; gap: 8px;}
```

{% endcode %}

<figure><img src="/files/29ibxIprJ2brWBrn6yvY" alt=""><figcaption></figcaption></figure>

***

## Hide customer avatar

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-single-review .reputon-avatar, .reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-image {display: none;}
```

{% endcode %}

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

***

## Hide customer name

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-name {display: none;}
```

{% endcode %}

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

***

## Hide review posting date

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-single-review .reputon-date {display: none;}
```

{% endcode %}

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

***

## Scale up/down reviews image

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body .reputon-product-image {
    max-height: 80px;
    max-width: 80px;}
```

{% endcode %}

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

***

## Hide header title, rating, reviews and logo

{% code overflow="wrap" %}

```css
/* remove entire header */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head {display: none;}

/* remove name */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-name {display: none;}

/* remove reviews counter */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-reviews-count {display: none;}

/* remove logo */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-image {display: none;}

/* remove rating */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-rating-stars {display: none;}

/* hide header rating counter */
.reputon-etsy-reviews-widget .reputon-standard .reputon-count-number {display: none;}

/* hide rating stars */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-head .reputon-rating-stars .reputon-count-text {display: none;}
```

{% endcode %}

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

***

## Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard {margin-top: 100px !important;}
```

{% endcode %}

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

***

## Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard {margin-bottom: 100px !important;}
```

{% endcode %}

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

***

## Change widget max-width

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard {max-width: 400px !important;}
```

{% endcode %}

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

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change scroll color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body::-webkit-scrollbar-thumb {background: red;}
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body::-webkit-scrollbar-track {background: black;}
```

{% endcode %}

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

***

## **Hide the footer**

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-footer {display: none;}
```

{% endcode %}

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

***

## Change widget height

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body {height: 200px;}

/* open all reviews without scroll */
.reputon-etsy-reviews-widget .reputon-standard .reputon-reviews-body {max-height: fit-content;}
```

{% endcode %}

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

***

## Apply black-and-white filter

{% code overflow="wrap" %}

```css
/* on images */
.reputon-etsy-reviews-widget .reputon-standard img {filter: grayscale(100%);}

/* on widget */
.reputon-etsy-reviews-widget .reputon-standard {filter: grayscale(100%);}
```

{% endcode %}

<figure><img src="/files/ckFCW6nYK9KQbVrFII9Z" 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/etsy-reviews-app/custom-style-codes/list-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.
