> 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/ebay-reviews-app/custom-style-codes/masonry-widget.md).

# Masonry widget

## Change rating color

{% code overflow="wrap" %}

```css
/* change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-feedback .reputon-feedback-text {color: dodgerblue;}
	
/* change the color of the feedback counter in seller widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-feedback .reputon-feedback-counter {color: dodgerblue;}
	
/* HEADER - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-reviews-head .reputon-feedback-text {color: dodgerblue;}
	
/* CARDS - change the color of the feedback text in seller widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-card .reputon-feedback-text {color: dodgerblue;}

/* change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-rating-stars {color: dodgerblue;}
	
/* HEADER - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-reviews-head .reputon-rating-stars {color: dodgerblue;}
	
/* CARDS - change the color of the star rating in the widget */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-card  .reputon-rating-stars {color: dodgerblue;}
```

{% endcode %}

<figure><img src="/files/HmooLbpnWLNggLtXgXP5" alt=""><figcaption><p>feedback text</p></figcaption></figure>

<figure><img src="/files/mb4SgsWSmTTg8NX0eu0v" alt=""><figcaption><p>feedback counter</p></figcaption></figure>

<figure><img src="/files/M5YhDn21LXhOHnw32spK" alt=""><figcaption><p>star rating</p></figcaption></figure>

***

## Change customer name

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-card .reputon-name {color: green;}
```

{% endcode %}

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

***

## Change review text color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-text {color: dodgerblue;}
```

{% endcode %}

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

***

## Change date color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-card .reputon-date {color: red;}
```

{% endcode %}

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

***

## Change border width, style and color

{% code overflow="wrap" %}

```css
/* reviews border */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-top-part {border: 3px solid #b8ddd1;}
```

{% endcode %}

<figure><img src="/files/66MgxAKlqmwO45E6DkeE" alt=""><figcaption></figcaption></figure>

***

## Change header **border width, style and color**

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-reviews-head {border: 3px solid #b8ddd1;}
```

{% endcode %}

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

***

## Change review card background color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-top-part {background: #b8ddd1;}
```

{% endcode %}

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

***

## Change header background color

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-reviews-head {background: #b8ddd1;}
```

{% endcode %}

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

***

## Change widget font

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry {font-family: 'Comic Sans MS' !important;}
```

{% endcode %}

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

***

## Change reviews counter

{% code overflow="wrap" %}

```css
/* change color */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-info .reputon-reviews-count {color: orange;}
	
/* hide */
.reputon-ebay-reviews-widget .reputon-masonry .reputon-info .reputon-reviews-count {display: none;}
```

{% endcode %}

<figure><img src="/files/SkKA2l3qrBoU7fvbrA5C" alt=""><figcaption><p>color counter</p></figcaption></figure>

<figure><img src="/files/OXHaZT05WlDmDRhWNTa1" alt=""><figcaption><p>hide counter</p></figcaption></figure>

***

## Hide header

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-reviews-head {display: none;}
```

{% endcode %}

***

## Hide review rating

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-card .reputon-rating {display: none;}
```

{% endcode %}

***

## Change “Load more” button

{% code overflow="wrap" %}

```css
/* change background color */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more {background: orange;}

/* change text color */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more {color: orange;}

/* change width */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more {width: 200px; justify-content: center;}

/* change height */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more {height: 50px; align-items: center;}

/* set border */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more {border: 2px solid orange}

/* button text */
.reputon-ebay-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more.editable:after {content: 'your text';}

/* 'load more' button font */
.reputon-google-reviews-widget .reputon-masonry.reputon-reviews-holder .reputon-load-more.editable:after {font-family: Comic Sans MS;}
```

{% endcode %}

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

***

## Change widget max-width

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry {max-width: 700px !important;}
```

{% endcode %}

***

## Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry {margin-top: 200px !important;}
```

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry {margin-bottom: 200px !important;}
```

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

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

{% endcode %}

***

## Color widget

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry {
  background: bisque;}

/* Add this code to theme.liquid to change the widget section color. */
<style> 
	section:has(.reputon-ebay-reviews-widget .reputon-masonry) {background: bisque;}
</style> 
```

{% endcode %}

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

***

## Hide Ebay logo from reviews

{% code overflow="wrap" %}

```css
.reputon-ebay-reviews-widget .reputon-masonry .reputon-review-logo {display: none;}
```

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

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

{% endcode %}

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

***

**Questions about CSS or need assistance? 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/ebay-reviews-app/custom-style-codes/masonry-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.
