# Store locator widget

### Change the rating

{% code overflow="wrap" %}

```css
/* сhange the color of the rating stars */
.reputon-google-reviews-widget .reputon-locations .reputon-location-stars-container {color: red;}

/* сhange the color of the rating counter */
.reputon-google-reviews-widget .reputon-locations .reputon-count-number {color: red;}

/* remove the rating stars */
.reputon-google-reviews-widget .reputon-locations .reputon-location-stars-container {display: none;}

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

/* add space between stars */
.reputon-google-reviews-widget .reputon-locations .reputon-location-stars-container {gap: 5px;}
```

{% endcode %}

{% columns fullWidth="true" %}
{% column width="50%" %}

<figure><img src="/files/vzRrGUayclQUN4IDHdQr" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<figure><img src="/files/MDInTypLPO3bOOzEUxum" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

***

### Change location name

{% code overflow="wrap" %}

```css
/* сhange the color */
.reputon-google-reviews-widget .reputon-locations .reputon-location-name {color: red;}

/* remove */
.reputon-google-reviews-widget .reputon-locations .reputon-location-name {display: none;}
```

{% endcode %}

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

***

### Change working hours

{% code overflow="wrap" %}

```css
/* сhange the color */
.reputon-google-reviews-widget .reputon-locations .reputon-item-content div {color: red;}

/* remove */
.reputon-google-reviews-widget .reputon-locations .reputon-item-hours {display: none;}
```

{% endcode %}

{% columns %}
{% column %}

<figure><img src="/files/PNLRSbgQKK5rHPrZMTDm" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<figure><img src="/files/glFxTWH12YLV8Qz76FbR" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

***

### Change address

{% code overflow="wrap" %}

```css
/* сhange the color */
.reputon-google-reviews-widget .reputon-locations .reputon-item-address .reputon-text {color: red;}

/* remove */
.reputon-google-reviews-widget .reputon-locations .reputon-item-address {display: none;}
```

{% endcode %}

{% columns %}
{% column %}

<figure><img src="/files/XH84oHMq6oubwJVTClYa" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<figure><img src="/files/jpU2s9RMZQ4CYRd0yx1K" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

***

### Change phone number

{% code overflow="wrap" %}

```css
/* сhange the color */
.reputon-google-reviews-widget .reputon-locations .reputon-item-phone .reputon-text {color: red;}

/* remove */
.reputon-google-reviews-widget .reputon-locations .reputon-item-phone {display: none;}
```

{% endcode %}

{% columns %}
{% column %}

<figure><img src="/files/kvCdvzrU1W5B5cumnLem" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<figure><img src="/files/FDAP5P6LWd5f7ksfRn9e" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

***

### Change icons color

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations .reputon-location-list {color: red;}
```

{% endcode %}

<figure><img src="/files/6PERF2cq6rGnhbdDFfbV" alt=""><figcaption></figcaption></figure>

***

### Change card background color

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations .reputon-location-content{background: aqua;}
```

{% endcode %}

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

***

### Change widget color

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations {
  background: aqua;}

/* To change the background color of the widget section, add this code to your theme.liquid file. */
<style> 
	section:has(.reputon-google-reviews-widget .reputon-locations) {background: aqua;}
</style> 
```

{% endcode %}

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

***

### Change “See all” button

{% code overflow="wrap" %}

```css
/* regular state */
.reputon-google-reviews-widget .reputon-locations .reputon-see-all {color: #fff; background: red;}

/* borders */
.reputon-google-reviews-widget .reputon-locations .reputon-see-all {border: 3px solid red;}

/* hover, active states */
.reputon-google-reviews-widget .reputon-locations .reputon-see-all:hover,
.reputon-google-reviews-widget .reputon-locations .reputon-see-all:not([disabled]):active,
.reputon-google-reviews-widget .reputon-locations .reputon-see-all:not([disabled]):active {color: #fff; background: brown;}

/* 'leave a review' button text */
.reputon-google-reviews-widget .reputon-locations .reputon-see-all.editable:after {content: 'your text';}

/* 'leave a review' button font */
.reputon-google-reviews-widget .reputon-locations .reputon-see-all {font-family: Comic Sans MS;}
```

{% endcode %}

***

### Change widget font

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations.reputon-widget {font-family: Comic Sans MS;}
```

{% endcode %}

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

***

### Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations.reputon-widget {margin-top: 100px;}
```

{% endcode %}

***

### Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations.reputon-widget {margin-bottom: 100px;}
```

{% endcode %}

***

### Adjust widget width

{% code overflow="wrap" %}

```css
.reputon-google-reviews-widget .reputon-locations.reputon-widget {max-width: 400px;}
```

{% endcode %}

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

***

### Hide widget on mobile

{% code overflow="wrap" %}

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

{% endcode %}

***

### Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/qrSoXcfPyJ8wqLkVBlVY" 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: 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/google-reviews-app/custom-style-codes/store-locator-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.
