# Small/minimized compact rating widget

## Remove widget elements

{% code overflow="wrap" %}

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

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

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

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

/* remove 'Positive feedback' */
.reputon-ebay-reviews-widget .reputon-small .reputon-reviews-marktext {display: none;}
```

{% endcode %}

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

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

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

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

<figure><img src="/files/1QREUTzfv4NHtsDl2rMq" alt=""><figcaption><p>positive feedback</p></figcaption></figure>

***

## Change widget color

{% code overflow="wrap" %}

```css
/* Rating stars color */
.reputon-ebay-reviews-widget .reputon-small .reputon-rating-stars {color: red;}

/* 'Positive feedback' color */
.reputon-ebay-reviews-widget .reputon-small .reputon-reviews-marktext {color: red;}

/* Reviews count color */
.reputon-ebay-reviews-widget .reputon-small .reputon-reviews-count {color: red;}

/* Rating counter color */
.reputon-ebay-reviews-widget .reputon-small .reputon-rating-count {color: red;}
```

{% endcode %}

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

<figure><img src="/files/yu4UCI40oJsinM0bbpIh" alt=""><figcaption><p>positive feedback</p></figcaption></figure>

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

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

***

## Change background color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-small .reputon-container {background: #b8ddd1;}

/* change color when hover at element */
.reputon-ebay-reviews-widget .reputon-small .reputon-container:hover {background: #b8ddd1;}

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

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

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

{% endcode %}

***

## Move the widget

{% code overflow="wrap" %}

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

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

/* center on mobile devices */
@media (max-width: 800px) {
  .reputon-ebay-reviews-widget .reputon-small .reputon-badge {
    transform-origin: center;}}
```

{% endcode %}

***

## **Change widget width**

💡 \*min width: 205px;\*

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-small .reputon-container {width: 270px !important;}
```

{% endcode %}

***

## Add margin above widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

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

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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