# Carousel widget

## Change rating color

{% code overflow="wrap" %}

```css
/* сhange header rating color*/
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-rating-stars {color: green;}

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

/* сhange header rating stars color */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-count-text {color: green;}
  
/* сhange review rating color */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-single-review .reputon-rating-stars {color: green;}
```

{% endcode %}

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

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

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

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

***

## Change name color

{% code overflow="wrap" %}

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

/* change reviews name only*/
.reputon-amazon-reviews-widget .reputon-carousel .swiper-horizontal .reputon-name {color: green;}

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

{% endcode %}

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

<figure><img src="/files/h6wT5p0SXI0W5xqTC5zZ" alt=""><figcaption><p>change reviews name</p></figcaption></figure>

<figure><img src="/files/i8ImKMrlqAkXeKsP9gOy" alt=""><figcaption><p>change header name</p></figcaption></figure>

***

## Change review text color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change publishing date color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

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

{% code overflow="wrap" %}

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

{% endcode %}

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

***

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

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change review card background color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change header background color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change “Verified” icon color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-carousel {font-family: Comic Sans MS !important;}
```

{% endcode %}

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

***

## Change navigation buttons size

<pre class="language-css" data-overflow="wrap"><code class="lang-css">/* change size */
<strong>.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
</strong>.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-prev {min-width: 80px; height: 80px;}

/* hide arrows */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-prev {display: none;}

/* hide arrows only on mobile */
@media(max-width: 760px) {
	.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
	.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-prev {display: none;}}

/* color arrows */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-prev {color: red; background: yellow;}

/* adjust arrows (use negative numbers to raise position) */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
.reputon-amazon-reviews-widget .reputon-carousel .reputon-swiper-button-prev {margin-top: 200px;}
</code></pre>

<figure><img src="/files/fXl421St0dQ9LbsLyHO0" alt=""><figcaption><p>change size</p></figcaption></figure>

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

***

## Hide customer name

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide review posting date

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide review rating stars

{% code overflow="wrap" %}

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

{% endcode %}

***

## Hide verified icons

{% code overflow="wrap" %}

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

{% endcode %}

***

## Always open all reviews

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change “Show more” button

{% code overflow="wrap" %}

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

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

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

{% endcode %}

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

***

## **Hide header content**

<pre class="language-css" data-overflow="wrap"><code class="lang-css">/* hide amazon logo */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-image {display: none;}
  
/* hide seller name */
<strong>.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-name {display: none;}
</strong>
/* hide rating */
<strong>.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-rating-stars {display: none;}
</strong>  
/* hide rating counter */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-count-number {display: none;}
  
/* hide rating stars */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-count-text {display: none;}
  
/* hide reviews counter */
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head .reputon-reviews-count {display: none;}
</code></pre>

<figure><img src="/files/mXkglbZFtQsnL30MKfXT" alt=""><figcaption><p>Amazon logo</p></figcaption></figure>

<figure><img src="/files/1Pt1N1bJdbuVAhksB7CY" alt=""><figcaption><p>seller name</p></figcaption></figure>

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

<figure><img src="/files/g8wHxUfWeQvbqbi6hxks" alt=""><figcaption><p>rating counter</p></figcaption></figure>

<figure><img src="/files/0xdrSWkIxq0Q1WX1laYk" alt=""><figcaption><p>rating stars</p></figcaption></figure>

<figure><img src="/files/Eq4qZzyxN4A3YKEkTwp5" alt=""><figcaption><p>reviews counter</p></figcaption></figure>

***

## Change image counter

{% code overflow="wrap" %}

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

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

{% endcode %}

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

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

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Change widget width

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Move header below the widget**

{% code overflow="wrap" %}

```css
.reputon-amazon-reviews-widget .reputon-carousel .reputon-head {order: 2;}
```

{% endcode %}

***

## Color the widget

{% code overflow="wrap" %}

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

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

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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