# Grid widget

## Change rating color

<pre class="language-css" data-overflow="wrap"><code class="lang-css"><strong>/* сhange the color of the header rating */
</strong>.reputon-amazon-reviews-widget .reputon-grid .reputon-head .reputon-rating-stars {color: green;}

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

/* сhange the color of the header rating stars */
.reputon-amazon-reviews-widget .reputon-grid .reputon-count-text {color: green;}
  
/* сhange the color of the review rating */
.reputon-amazon-reviews-widget .reputon-grid .reputon-single-review .reputon-rating-stars {color: green;}
</code></pre>

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

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

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

<figure><img src="/files/d2X61YtFYmYR2dYUCTRo" alt=""><figcaption><p>review rating</p></figcaption></figure>

***

## Change name color

<pre class="language-css" data-overflow="wrap"><code class="lang-css">/* change name */
.reputon-amazon-reviews-widget .reputon-grid .reputon-name {color: green;}

/* change reviews name only*/
<strong>.reputon-amazon-reviews-widget .reputon-grid .reputon-grid-wrapper .reputon-name {color: green;}
</strong>
/* change header name only*/
.reputon-amazon-reviews-widget .reputon-grid .reputon-head .reputon-name {color: green;}
</code></pre>

<figure><img src="/files/huWKmk7Cy6O69sz49jHq" alt=""><figcaption><p>сhange name color</p></figcaption></figure>

<figure><img src="/files/8VTAKssHyrZ245pOaCNL" alt=""><figcaption><p>сhange reviews name</p></figcaption></figure>

<figure><img src="/files/QXhkUlnkhpB1YRctc9nP" alt=""><figcaption><p>сhange header name</p></figcaption></figure>

***

## Change review text color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-text {color: green;}
```

{% endcode %}

***

## Change publishing date color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-date {color: green;}
```

{% endcode %}

***

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

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-top-part {border: 3px solid red;}
```

{% endcode %}

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

***

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

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-head {border: 3px solid red;}
```

{% endcode %}

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

***

## Change review card background color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-top-part {background: lightblue;}
```

{% endcode %}

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

***

## Change header background color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-head {background: lightblue;}
```

{% endcode %}

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

***

## Change “Verified” icon color

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-verified-icon {color: pink;}
```

{% endcode %}

***

## Change widget font

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid,
.reputon-amazon-reviews-widget .reputon-grid .reputon-load-more {font-family: Comic Sans MS !important;}
```

{% endcode %}

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

***

## Hide customer name

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide review posting date

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid .reputon-date {display: none;}
```

{% endcode %}

***

## Hide review rating stars

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide verified icons

{% code overflow="wrap" %}

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

{% endcode %}

***

## Remove “Show more”

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change “Show more” button

{% code overflow="wrap" %}

```css
/* change color */
.reputon-amazon-reviews-widget .reputon-grid .reputon-show-more {color: red;}

/* remove underline */
.reputon-amazon-reviews-widget .reputon-grid .reputon-show-more span {text-decoration: none;}

/* change font */
.reputon-amazon-reviews-widget .reputon-grid .reputon-show-more span {font-family: Comic Sans MS;}
```

{% endcode %}

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

***

## ‘Load more’ button

{% code overflow="wrap" %}

```css
/* hide button */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {display: none;}

/* change text color */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {color: red;}

/* change background color */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {background: beige;}

/* change font */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {font-family: Comic Sans MS;}

/* change width */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {
  width: 200px;
  justify-content: center;}

/* change height */
.reputon-amazon-reviews-widget .reputon-reviews-holder.reputon-grid .reputon-load-more {
  height: 50px;
  align-items: center;}

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

{% endcode %}

<figure><img src="/files/2KmfD7ksqv9v7vsPC0YL" alt=""><figcaption></figcaption></figure>

***

## **Hide header content**

{% code overflow="wrap" %}

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

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

{% endcode %}

***

## Change image counter

{% code overflow="wrap" %}

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

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

{% endcode %}

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

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

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change widget width

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Color the widget

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-grid {
  background: bisque;}

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

{% endcode %}

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

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/vbMBsKzz18PT2PFhXL3o" 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/grid-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.
