# List widgets

## Change rating color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-rating-stars {color: green;}

/* сhange the color of the header rating */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-rating-stars {color: green;}
	
/* сhange the color of the header rating counter */
.reputon-amazon-reviews-widget .reputon-standard .reputon-count-number {color: green;}

/* сhange the color of the header rating stars */
.reputon-amazon-reviews-widget .reputon-standard .reputon-count-text {color: green;}

/* сhange the color of the review rating */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-body .reputon-rating-stars {color: green;}
```

{% endcode %}

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

***

## Change customer name color

{% code overflow="wrap" %}

```css
/* change name */
.reputon-amazon-reviews-widget .reputon-standard .reputon-name {color: green;}

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

/* change header name only*/
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-name {color: green;}
```

{% endcode %}

<figure><img src="/files/5X39iXKpM6weCh5RuvmX" alt=""><figcaption></figcaption></figure>

***

## Change publishing date color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-date {color: green;}
```

{% endcode %}

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

***

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

{% code overflow="wrap" %}

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

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

/* header border */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {
  border: 3px solid red;
  border-radius: 16px 16px 0 0;}

/* footer border */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-footer {
  border: 3px solid red;
  border-radius: 0 0 16px 16px;}
```

{% endcode %}

<figure><img src="/files/rMoTccAxgeDkt4jsl4cF" alt=""><figcaption><p>entire widget</p></figcaption></figure>

<figure><img src="/files/XoWhiTQYotAc6Glj4JOk" alt=""><figcaption><p>reviews body</p></figcaption></figure>

<figure><img src="/files/9FiVtQKAMIhs35sU7HWP" alt=""><figcaption><p>header</p></figcaption></figure>

<figure><img src="/files/pvP97X9ilefQEzn4Ugde" alt=""><figcaption><p>footer</p></figcaption></figure>

***

## Change **background color**

{% code overflow="wrap" %}

```css
/* reviews body background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {background: lightblue;}
  
/* around reviews body background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content {background: lightblue;}

/* header background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {background: lightblue !important;}

/* footer background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-footer {background: lightblue;}

/* Add this code to theme.liquid to change the widget section color. */
<style> 
	section:has(.reputon-amazon-reviews-widget .reputon-standard) {background: lightblue;}
</style> 
```

{% endcode %}

<figure><img src="/files/L1BxJdeyJvXdsUTETIWS" alt=""><figcaption><p>reviews body</p></figcaption></figure>

<figure><img src="/files/6SE1Yrn3pCaPBWrnqGS5" alt=""><figcaption><p>behind reviews</p></figcaption></figure>

<figure><img src="/files/i0ughsHs9ibtooUHPXSn" alt=""><figcaption><p>header</p></figcaption></figure>

<figure><img src="/files/gJ6M3SbRx3JsMYz26bN8" alt=""><figcaption><p>footer</p></figcaption></figure>

***

## Change “Verified” icon color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-single-review .reputon-verified-icon {color: green;}
```

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

```css
/* change the font of the widget */
.reputon-amazon-reviews-widget .reputon-standard {font-family: Comic Sans MS !important;}
```

{% endcode %}

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

***

## Hide customer name

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide review posting date

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide review rating stars

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-rating-stars {display: none;}
```

{% endcode %}

***

## Hide verified icons

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-verified {display: none;}
```

{% endcode %}

***

## **Hide content in header**

{% code overflow="wrap" %}

```css
/* hide header */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head {display: none;}
  
/* hide amazon logo */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-image {display: none;}
  
/* hide seller name */
.reputon-amazon-reviews-widget .reputon-standard .reputon-head .reputon-name {display: none;}

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

{% endcode %}

***

## Change divider

{% code overflow="wrap" %}

```css
/* change color */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {border-bottom: 1px solid #EAEAEA;}
.reputon-amazon-reviews-widget .reputon-standard .reputon-card:last-child {border: none;}

/* hide divider */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card {border: none;}
```

{% endcode %}

***

## Change image counter

{% code overflow="wrap" %}

```css
/* change color */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-reviews-image-container::after {color: red;}

/* change background */
.reputon-amazon-reviews-widget .reputon-standard .reputon-card .reputon-reviews-image-container::after {background: #ff00005e;}
```

{% endcode %}

<figure><img src="/files/45XHei7WjrETFKkgmlH9" alt=""><figcaption><p>change color</p></figcaption></figure>

<figure><img src="/files/hMGdPi3baAd3GmoDKZ8L" alt=""><figcaption><p>change background</p></figcaption></figure>

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change widget width

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change scroll color

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/5RTS6mwjAGkMywIehBYD" alt=""><figcaption></figcaption></figure>

***

## **Hide footer**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change widget height

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard .reputon-reviews-content {max-height: 200px;}

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

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-standard {filter: grayscale(100%);}
```

{% endcode %}

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