> 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/google-reviews-app/custom-style-codes/compact-widgets/inline-rating.md).

# Inline rating

### Remove widget elements

{% code overflow="wrap" %}

```css
/* remove rating stars */
.reputon-google-reviews-widget .reputon-inline .reputon-rating-stars {display: none;}

/* remove rating counter */
.reputon-google-reviews-widget .reputon-inline .reputon-rating-count {display: none;}

/* remove reviews counter */
.reputon-google-reviews-widget .reputon-inline .reputon-reviews-count {display: none;}

/* remove Google logo */
.reputon-google-reviews-widget .reputon-inline .reputon-logo {display: none;}
```

{% endcode %}

***

### Change widget color

{% code overflow="wrap" %}

```css
/* color background color */
.reputon-google-reviews-widget .reputon-inline .reputon-wrapper {background: pink;}

/* color rating stars */
.reputon-google-reviews-widget .reputon-inline .reputon-rating-stars {color: pink;}

/* color rating counter */
.reputon-google-reviews-widget .reputon-inline .reputon-rating-count {color: pink;}

/* color reviews counter */
.reputon-google-reviews-widget .reputon-inline .reputon-reviews-count {color: pink;}
```

{% endcode %}

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

***

### Move widget content

{% code overflow="wrap" %}

```css
/* move to the start of the block */
.reputon-google-reviews-widget .reputon-inline .reputon-wrapper {justify-content: flex-start;}

/* move to the end of the block */
.reputon-google-reviews-widget .reputon-inline .reputon-wrapper {justify-content: flex-end;}

/* move to center of the block */
.reputon-google-reviews-widget .reputon-inline .reputon-wrapper {justify-content: center;}

```

{% endcode %}

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

***

### Hide widget on mobile

{% code overflow="wrap" %}

```css
@media (max-width: 460px) { 
	.reputon-google-reviews-widget .reputon-inline {display: none;}}
```

{% endcode %}

***

### Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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

***

{% hint style="info" icon="comments-question" %}
**Have questions or need help with CSS?** **We're here 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)
{% 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/google-reviews-app/custom-style-codes/compact-widgets/inline-rating.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.
