> 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/one-line-widget.md).

# One line widget

### Remove widget elements

{% code overflow="wrap" %}

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

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

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

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

{% endcode %}

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

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

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

***

### Change widget color

{% code overflow="wrap" %}

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

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

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

{% endcode %}

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

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

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

***

### Change direction

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-star-rating .reputon-review-badge {flex-direction: column;}
```

{% endcode %}

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

***

### Move widget

{% code overflow="wrap" %}

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

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

/* move to center of the block */
.reputon-google-reviews-widget {justify-content: center !important;}
.reputon-google-reviews-widget .reputon-star-rating {margin: 0 !important;}

```

{% endcode %}

<div><figure><img src="/files/fttfqgVtf2RHIDkj6Itf" alt=""><figcaption></figcaption></figure> <figure><img src="/files/yD5e4hPlwkgfVmsLOP9V" alt=""><figcaption></figcaption></figure> <figure><img src="/files/rqecA5tYlcdOW6WPdwAj" alt=""><figcaption></figcaption></figure></div>

***

### Hide widget on mobile

{% code overflow="wrap" %}

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

{% endcode %}

***

### Apply black-and-white filter

<figure><img src="/files/2rRw2Fox9TcrfT1VeIRq" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

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

{% endcode %}

***

{% 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/one-line-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.
