> 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/ebay-reviews-app/custom-style-codes/carousel-widget.md).

# Carousel widget

## Change rating color

{% code overflow="wrap" %}

```css
/* change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-feedback .reputon-feedback-text {color: dodgerblue;}
	
/* change the color of the feedback counter in seller widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-feedback .reputon-feedback-counter {color: dodgerblue;}
	
/* HEADER - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-feedback-text {color: dodgerblue;}
	
/* CARDS - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-card .reputon-feedback-text {color: dodgerblue;}

/* change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-rating-stars {color: dodgerblue;}
	
/* HEADER - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-reviews-head .reputon-rating-stars {color: dodgerblue;}
	
/* CARDS - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-card  .reputon-rating-stars {color: dodgerblue;}
	
```

{% endcode %}

<figure><img src="/files/TYAuZryjp7Y9odSCwbgo" alt=""><figcaption><p>feedback text</p></figcaption></figure>

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

<figure><img src="/files/XwWpN3E7ZYfk6jDal7Il" alt=""><figcaption><p>feedback counter</p></figcaption></figure>

***

## Change customer name

{% code overflow="wrap" %}

```css
/* change the color of the customer name */
.reputon-ebay-reviews-widget .reputon-carousel юreputon-card .reputon-name {color: green;}
```

{% endcode %}

<figure><img src="/files/6h5PvYWuADJ2P8LbXl0B" alt=""><figcaption></figcaption></figure>

***

## Change review text color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-text 
{color: steelblue;}
```

{% endcode %}

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

***

## Change publishing date color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-card .reputon-date {color: steelblue;}
```

{% endcode %}

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

***

## Change border width, style and color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-top-part {border: 3px solid #b8ddd1;}
```

{% endcode %}

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

***

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

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-reviews-head {border: 3px solid #b8ddd1;}
```

{% endcode %}

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

***

## Change review card background color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-top-part {background: #b8ddd1;}
```

{% endcode %}

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

***

## Change header background color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-carousel .reputon-reviews-head {background: #b8ddd1;}
```

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change navigation buttons size

{% code overflow="wrap" %}

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

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

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

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

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

{% endcode %}

<div><figure><img src="/files/8dKcIVlFAmHUokfqsesG" alt=""><figcaption><p>change size</p></figcaption></figure> <figure><img src="/files/OGkDfitMGcViJ5v0mY1D" alt=""><figcaption><p>change color</p></figcaption></figure></div>

***

## Change reviews counter

{% code overflow="wrap" %}

```css
/* change color */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-info .reputon-reviews-count {color: orange;}
	
/* hide */
.reputon-ebay-reviews-widget .reputon-carousel .reputon-info .reputon-reviews-count {display: none;}
```

{% endcode %}

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

<figure><img src="/files/7htq6v24KrO5nBpcU2XA" alt=""><figcaption><p>hide counter</p></figcaption></figure>

***

## Hide review rating

{% code overflow="wrap" %}

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

{% endcode %}

***

## Always open all reviews

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/6XL8nGwBdQEKcfDBk8PW" alt=""><figcaption></figcaption></figure>

***

## Change “Show more” button

{% code overflow="wrap" %}

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

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

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

{% endcode %}

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

***

## Change widget max-width

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## **Move header below the widget**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Color widget

{% code overflow="wrap" %}

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

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

{% endcode %}

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

***

## Hide Ebay logo from reviews

{% code overflow="wrap" %}

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

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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