> 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/facebook-reviews-app/custom-style-codes/small-minimized-compact-rating-widget.md).

# Small/minimized compact rating widget

### Remove widget elements

{% code overflow="wrap" %}

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

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

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

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

{% endcode %}

***

### Change widget main color

{% code overflow="wrap" %}

```css
/* change rating counter color */
.reputon-facebook-reviews-widget .reputon-small .reputon-container .reputon-rating-count {color: red;}

/* change rating stars color */
.reputon-facebook-reviews-widget .reputon-small .reputon-container .reputon-rating-stars {color: red;}

/* change reviews counter color */
.reputon-facebook-reviews-widget .reputon-small .reputon-container .reputon-reviews-count {color: red;}
```

{% endcode %}

***

### Change background color

{% code overflow="wrap" %}

```css
.reputon-facebook-reviews-widget .reputon-small .reputon-container {background: antiquewhite;}

/* change color on element hover. */
.reputon-facebook-reviews-widget .reputon-small .reputon-container:hover {abackground: wheat;}

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

{% endcode %}

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

***

### Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/93z8O6UAyUWecTs9Rt7X" alt=""><figcaption></figcaption></figure>

***

### Move the widget

{% code overflow="wrap" %}

```css
/* move to block start */
.reputon-facebook-reviews-widget .reputon-small {
	margin-left: 0 !important;}

/* move to block center*/
.reputon-facebook-reviews-widget .reputon-small {
	margin: 0 !important;}

/* move to block end */
.reputon-facebook-reviews-widget .reputon-small {
	margin-right: 0 !important;}

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

{% endcode %}

***

{% hint style="info" icon="comments-question-check" %}
**Have questions or need help with CSS? Contact us at** [**support@reputon.com**](mailto:support@reputon.com) **or** [**live chat**](https://go.crisp.chat/chat/embed/?website_id=d24ef16e-6e05-49e9-bd59-a6f3bde0658a)
{% endhint %}


---

# 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/facebook-reviews-app/custom-style-codes/small-minimized-compact-rating-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.
