> 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/customer-reviews-app/custom-style-codes/rate-us-widget.md).

# Rate us widget

### Change rating color

{% code overflow="wrap" %}

```css
/* сhange rating counter color */
.reputon-customer-reviews-widget .rating_widget [class*=reputon-rating-counter] {color: green;}

/* сhange rating stars color */
.reputon-customer-reviews-widget .rating_widget [class*=reputon-rating-stars] {color: green;}
```

{% endcode %}

<figure><img src="/files/9izdrJrzzlsMQaNcS1JM" alt=""><figcaption></figcaption></figure>

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

***

### Change link color

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget [class*=reputon-card-reviews-counter] {color: green;}
```

{% endcode %}

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

***

### Change cards color

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget [class*=reputon-card] {
  background: antiquewhite;}
```

{% endcode %}

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

***

### Change widget color

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget {background: antiquewhite;}
```

{% endcode %}

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

***

### Hide logo

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget [class*=reputon-card-logo] {display: none;}
```

{% endcode %}

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

***

### Hide rating

{% code overflow="wrap" %}

```css
/* Hide counter only */
.reputon-customer-reviews-widget .rating_widget [class*=reputon-rating-counter] {display: none;}

/* Hide stars only */
.reputon-customer-reviews-widget .rating_widget [class*=reputon-rating-stars] {display: none;}

/* Hide full rating */
.reputon-customer-reviews-widget .rating_widget [class*=reputon-card-rating] {display: none;}
```

{% endcode %}

Hide counter

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

Hide stars

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

Hide full rating

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

***

### Hide reviews counter

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget [class*=reputon-card-reviews-counter] {display: none;}
```

{% endcode %}

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

***

### Add margin

{% code overflow="wrap" %}

```css
/* Add a margin above the widget */
.reputon-customer-reviews-widget .rating_widget {margin-top: 200px;}

/* Add a margin below the widget */
.reputon-customer-reviews-widget .rating_widget {margin-bottom: 200px;}
```

{% endcode %}

***

### Change widget width

{% code overflow="wrap" %}

```css
.reputon-customer-reviews-widget .rating_widget {width: 600px;}
```

{% endcode %}

***

### **Hide widget on mobile devices**

{% code overflow="wrap" %}

```css
@media (max-width: 460px) { 
  .reputon-customer-reviews-widget .rating_widget {display: none !important; }}
```

{% endcode %}

***

### Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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

***

**Have questions or need help with CSS?** **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
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/customer-reviews-app/custom-style-codes/rate-us-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.
