# Small / minimized compact rating widget

## Remove widget elements

{% code overflow="wrap" %}

```css
/* remove logo */
.reputon-etsy-reviews-widget .reputon-small .reputon-image {display: none;}

/* remove rating count */
.reputon-etsy-reviews-widget .reputon-small .reputon-rating-count {display: none;}

/* remove rating stars */
.reputon-etsy-reviews-widget .reputon-small .reputon-rating-stars {display: none;}

/* remove reviews count */
.reputon-etsy-reviews-widget .reputon-small .reputon-reviews-count {display: none;}
```

{% endcode %}

<div><figure><img src="/files/UwGzCwoUhD6rrlCqybwb" alt=""><figcaption></figcaption></figure> <figure><img src="/files/eWUG6zBid4NnkYQbOFf5" alt=""><figcaption></figcaption></figure> <figure><img src="/files/PZI2s3yS44ubtvPXm0uG" alt=""><figcaption></figcaption></figure> <figure><img src="/files/SaAMWEd84EMerL6vEEBM" alt=""><figcaption></figcaption></figure></div>

***

## Change widget main color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-small .reputon-container {color: red;}
```

{% endcode %}

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

***

## Change reviews count color

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/1ONVMM1UjfSFK7PMhBga" alt=""><figcaption></figcaption></figure>

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Center content

{% code overflow="wrap" %}

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

{% endcode %}

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

***

## Change background color

{% code overflow="wrap" %}

```css
.reputon-etsy-reviews-widget .reputon-small .reputon-container {background: antiquewhite;}
.reputon-etsy-reviews-widget .reputon-small .reputon-bt-close {background: antiquewhite;}

/* change color on hover at element */
.reputon-etsy-reviews-widget .reputon-small .reputon-container:hover {background: wheat;}

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

{% endcode %}

<figure><img src="/files/NtzTDt4EIlNb6PmXMh36" alt=""><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-small {margin: 0 !important;}

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

/* center on mobile */
@media (max-width: 640px) {.reputon-etsy-reviews-widget .reputon-small .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: 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/etsy-reviews-app/custom-style-codes/small-minimized-compact-rating-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.
