> For the complete documentation index, see [llms.txt](https://reputon.gitbook.io/reputon-help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reputon.gitbook.io/reputon-help/etsy-reviews-app/custom-style-codes/carousel-widget.md).

# Carousel widget

## Change rating color

{% code overflow="wrap" %}

```css
/* change widget's rating color */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-rating-stars {color: dodgerblue;}

/* change rating card color only */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-card .reputon-rating-stars {color: dodgerblue;}

/* change header info rating color */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-carousel-footer .reputon-rating-stars {color: dodgerblue;}

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

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

{% endcode %}

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

***

## Change Etsy header logo color&#x20;

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-image {color: dodgerblue;}
```

{% endcode %}

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

***

## Change Etsy reviews logo color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-review-logo {color: dodgerblue;}	
```

{% endcode %}

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

***

## Change name color

{% code overflow="wrap" %}

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

/* change review names only */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-carousel-holder .reputon-name {color: red;}

/* change header name only */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-carousel-footer .reputon-name {color: red;}
	
```

{% endcode %}

<figure><img src="/files/7docdu1kckE2McP1VTZN" alt=""><figcaption></figcaption></figure>

***

## Change review text color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change publishing date color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change reviews counter color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change border width, style and color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-card .reputon-top-part {border: 3px solid orange;}
```

{% endcode %}

<figure><img src="/files/7Z8GjV7nQqeSFOjFrhXf" alt=""><figcaption></figcaption></figure>

***

## Change header border width, style and color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change review card background color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-card .reputon-top-part {background: skyblue;}
```

{% endcode %}

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

***

## Change header background color

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change “Verified” icon color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-verified-icon {color: red;}
```

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change navigation arrows

{% code overflow="wrap" %}

```css
/* change size */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
.reputon-etsy-reviews-widget .reputon-carousel .reputon-swiper-button-prev {min-width: 80px;height: 80px;}

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

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

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

/* move arrows (use negative numbers to position higher) */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-swiper-button-next,  
.reputon-etsy-reviews-widget .reputon-carousel .reputon-swiper-button-prev {margin: 200px;}
```

{% endcode %}

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

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

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

***

## Center title in header

{% code overflow="wrap" %}

```css
/* center seller name */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-name {text-align: center;}

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

{% endcode %}

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

***

## Hide customer avatar

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-bottom-part .reputon-avatar {display: none}
```

{% endcode %}

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

***

## Hide customer name

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-bottom-part .reputon-name {display: none}
```

{% endcode %}

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

***

## Hide review posting date

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-bottom-part .reputon-date {display: none}
```

{% endcode %}

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

***

## Hide header title, rating, reviews and logo

{% code overflow="wrap" %}

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

/* hide title */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-name {display: none;}

/* hide reviews */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-reviews-count {display: none;}

/* hide logo */
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-header-logo {display: none;}

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

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

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

{% endcode %}

<figure><img src="/files/7JHYlGE0T3S8Cc70yI0k" alt=""><figcaption><p>hide title</p></figcaption></figure>

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

<figure><img src="/files/RVNnFyOlQuThsnkonq2l" alt=""><figcaption><p>hide reviews count</p></figcaption></figure>

<figure><img src="/files/9yufHkYHhgkKKA3C8pgW" alt=""><figcaption><p>hide logo</p></figcaption></figure>

***

## Always open all reviews

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change “Show more” button

{% code overflow="wrap" %}

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

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

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

{% endcode %}

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

***

## Change widget max-width

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/8ow7EswlZo2H7PaESWxt" alt=""><figcaption></figcaption></figure>

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Move header to bottom

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-reviews-head {order: 1;}
```

{% endcode %}

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

***

## Color the widget

{% code overflow="wrap" %}

```css
.reputon-etsy-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-etsy-reviews-widget .reputon-carousel) {background: bisque;}
  </style> 
```

{% endcode %}

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

***

## Hide Etsy logo from reviews

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-carousel .reputon-review-logo {display: none;}
```

{% endcode %}

<figure><img src="/files/37RYSEdoI2D4ZHsmffdn" alt=""><figcaption></figcaption></figure>

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

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

{% endcode %}

<figure><img src="/files/le1b8esjMWtoleeX0IA6" 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://reputon.gitbook.io/reputon-help/etsy-reviews-app/custom-style-codes/carousel-widget.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
