> 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/sompact-slider-sticky-compact-slider-widget.md).

# Сompact slider / sticky compact slider widget

## Change widget max-width

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-container {max-width: 400px;}
```

{% endcode %}

<div><figure><img src="/files/kJ9KrO4qocktdzxn72hB" alt=""><figcaption><p>before</p></figcaption></figure> <figure><img src="/files/aMnD1BSGsukhLb0zke97" alt=""><figcaption><p>after</p></figcaption></figure></div>

***

## Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide {margin-top: 100px !important;}
```

{% endcode %}

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

***

## Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide {margin-bottom: 100px !important;}
```

{% endcode %}

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

***

## Change rating color

{% code overflow="wrap" %}

```css
/* change the color of the rating in all widget */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-rating-stars {color: dodgerblue;}

/* change the color of the rating in review slides only */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-rating-stars {color: dodgerblue;}

/* change the color of the rating in info slide only */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-rating-stars {color: dodgerblue;}
```

{% endcode %}

***

<div><figure><img src="/files/u3IbUCyQwOhKLPdQQRjI" alt=""><figcaption><p>before</p></figcaption></figure> <figure><img src="/files/0Ks6azG5M5npVz1GnPSq" alt=""><figcaption><p>after</p></figcaption></figure></div>

## Hide customer name and stars count

{% code overflow="wrap" %}

```css
/* hide customer name and stars count */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-rating-text {display: none;}

/* hide stars counter only */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-rating-text > div:first-child {display: none;}
```

{% endcode %}

<div><figure><img src="/files/TaRFZj1JYZSuLlfVpPET" alt=""><figcaption><p>hide the entire line</p></figcaption></figure> <figure><img src="/files/3RflFEOpZbcLCGo2riFt" alt=""><figcaption><p>hide the stars count only</p></figcaption></figure></div>

***

## Change customer name and stars count color

{% code overflow="wrap" %}

```css
/* change customer name and stars count color */;
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-rating-text {color: dodgerblue;}

/* change stars count color only */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-rating-text > div:first-child {color: dodgerblue;}
```

{% endcode %}

<div><figure><img src="/files/LYhnzPOiFKVtAwS2BEVb" alt="" width="563"><figcaption></figcaption></figure> <figure><img src="/files/DMBErU5KOjTflHWVdJgQ" alt=""><figcaption></figcaption></figure></div>

***

## Change publishing date color

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/1INNCBMEIgXXj1f16rTG" alt="" width="425"><figcaption></figcaption></figure>

***

## Change border width, style and color

{% code overflow="wrap" %}

```css
/* change color except top */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-badge {
	border: 3px solid orange;
	border-top: none;}

/* change top color */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-badge > div:last-child {background: dodgerblue;}
```

{% endcode %}

<div><figure><img src="/files/4Qamp6a6RAfSS6jJmd9L" alt=""><figcaption></figcaption></figure> <figure><img src="/files/3lxPFGvInZMkuKk0acKI" alt=""><figcaption></figcaption></figure></div>

***

## Change slider background color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-slide {background: skyblue;}

/* make hover lighter or darker than the container color */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-container:hover .reputon-slide {background: skyblue;}

/* 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-basic-slide) {background: bisque;}
</style> 
```

{% endcode %}

<figure><img src="/files/FkqZiOsJ01T7ggcAUOO2" alt="" width="375"><figcaption></figcaption></figure>

***

## Change widget font

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/ENcOKkRuA4HoKhfIgFsu" alt="" width="443"><figcaption></figcaption></figure>

***

## Change Etsy logo color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-image {color: dodgerblue;}
```

{% endcode %}

<figure><img src="/files/1Hi6brvB7xgMSqV8lIl9" alt="" width="428"><figcaption></figcaption></figure>

***

## Change info slider text color

{% code overflow="wrap" %}

```css
/* change 'number of reviews' color */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-reviews-count {color: orange;}

/* change name color*/
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-name {color: orange;}
```

{% endcode %}

<figure><img src="/files/M1k02I3ZdVUwDlglCo9h" alt="" width="447"><figcaption></figcaption></figure>

***

## Center info slider title and reviews counter&#x20;

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-content {align-items: center;}

.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-name {text-align: center;}
```

{% endcode %}

<figure><img src="/files/9WeHBYtiH7yfLXQzyf2S" alt="" width="424"><figcaption></figcaption></figure>

***

## Center review slider title and reviews counter

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-single-review .reputon-content {align-items: center;}
```

{% endcode %}

<figure><img src="/files/8fQ9YAojrvOV8zyE2mCZ" alt="" width="445"><figcaption></figcaption></figure>

***

## Hide footer title, rating, reviews and logo&#x20;

{% code overflow="wrap" %}

```css
/* hide title */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-name {display: none;}

/* hide rating */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-rating-stars {display: none;}

/* hide reviews */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-reviews-count {display: none;}

/* hide logo */
.reputon-etsy-reviews-widget .reputon-basic-slide .reputon-info .reputon-image {display: none;}
```

{% endcode %}

<div><figure><img src="/files/jJcBQsXqWFVnVqrb0SZi" alt=""><figcaption><p>hide logo</p></figcaption></figure> <figure><img src="/files/DYhse9ddvmRyxu8vl3RL" alt=""><figcaption><p>hide name</p></figcaption></figure> <figure><img src="/files/kTFOFPjEf7yPp20iPzcs" alt=""><figcaption><p>hide rating</p></figcaption></figure> <figure><img src="/files/7yTnHVgl808yHxpBMRO6" alt=""><figcaption><p>hide reviews</p></figcaption></figure></div>

***

## Apply black-and-white filter

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-basic-slide {filter: grayscale(100%);}
```

{% endcode %}

<figure><img src="/files/H76URBykt0BYdyCPybvK" alt="" width="425"><figcaption></figcaption></figure>

***

## Move the widget

{% code overflow="wrap" %}

```css
/* move to the start of the block */
.reputon-etsy-reviews-widget {justify-content: flex-start !important;}
.reputon-etsy-reviews-widget .reputon-basic-slide {margin: 0 !important;}

/* move to the end of the block */
.reputon-etsy-reviews-widget {justify-content: flex-end !important;}
.reputon-etsy-reviews-widget .reputon-basic-slide {margin: 0 !important;}

/* center on mobile */
@media (max-width: 640px) {
  .reputon-etsy-reviews-widget .reputon-basic-slide .reputon-badge {transform-origin: center;}}
```

{% endcode %}

***

**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/sompact-slider-sticky-compact-slider-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.
