# Grid widget

## Change widget font

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid {font-family: Comic Sans MS !important;}
```

{% endcode %}

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

***

## Change background color

{% code overflow="wrap" %}

```css
/* change widget background color */
.reputon-tiktok-widget .reputon-grid .reputon-grid-container {background: bisque;}

/* To change the widget section color, add this code to theme.liquid*/
<style> 
	section:has(.reputon-tiktok-widget .reputon-grid) {
	  background: bisque;}
</style> 
```

{% endcode %}

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

***

## Change play icon color

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-play-icon path {fill: red;}
.reputon-tiktok-widget .reputon-grid .reputon-play-icon circle {stroke: red;}
```

{% endcode %}

<figure><img src="/files/36YmyG8qTHycbGTDYSzp" alt=""><figcaption></figcaption></figure>

***

## Remove play icon

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-play-icon {display: none;}
```

{% endcode %}

<figure><img src="/files/5owcPej8TOWCG0876Qpj" alt=""><figcaption></figcaption></figure>

***

## Change widget width

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid {width: 650px;}
```

{% endcode %}

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

***

## Change “Show more” button

{% code overflow="wrap" %}

```css

/* change text color */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {color: red;}

/* change font size */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {font-size: 10px;}

/* hide show more btn */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {font-family: Comic Sans MS;}

/* change button background */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {background: aquamarine;}

/* change button width */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {
  width: 150px;
  justify-content: center;}

/* change button height */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {
  height: 150px;
  align-items: center;}

/* change button borders */
.reputon-tiktok-widget .reputon-grid .reputon-load-more {
  border: 1px solid red;}

/* change button text */
.reputon-tiktok-widget .reputon-grid .reputon-load-more.editable:after {
  content: 'your text';}
```

{% endcode %}

<div><figure><img src="/files/TGPhAWRwFwn07zUaD0rQ" alt=""><figcaption><p>change text color</p></figcaption></figure> <figure><img src="/files/Xd1B90jVCt2XgnoX4tpD" alt=""><figcaption><p>change height</p></figcaption></figure> <figure><img src="/files/nF95jJ2zDx5ug6I0xzyX" alt=""><figcaption><p>change font-size</p></figcaption></figure> <figure><img src="/files/q5yET7nCi9So9wKX54NN" alt=""><figcaption><p>change font</p></figcaption></figure></div>

<div><figure><img src="/files/TcxUnQ85RVJ05Gchh4IK" alt=""><figcaption><p>customize text</p></figcaption></figure> <figure><img src="/files/g5okXPheyv8uw510V8eg" alt=""><figcaption><p>change borders</p></figcaption></figure> <figure><img src="/files/dBJzLvsSMMM1WxZrO5uG" alt=""><figcaption><p>change background</p></figcaption></figure></div>

***

## Remove show more button

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-load-more {display: none;}
```

{% endcode %}

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

***

## Change header background

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-reviews-head {background: bisque;}
```

{% endcode %}

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

***

## Change header border

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-reviews-head {border: 1px solid black;}
```

{% endcode %}

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

***

## Change chanel title

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-title {color: red;}
```

{% endcode %}

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

***

## Remove chanel title

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-title {display: none;}
```

{% endcode %}

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

***

## Change chanel name

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-description {color: red;}
```

{% endcode %}

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

***

## Remove chanel name

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-description {display: none;}
```

{% endcode %}

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

***

## Change counters text

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-counter-text {color: red;}
```

{% endcode %}

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

***

## Change counters&#x20;

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-counter {color: red;}
```

{% endcode %}

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

***

## Remove counters&#x20;

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-counters {display: none;}
```

{% endcode %}

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

***

## Change verified color

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-verified {color: red;}
```

{% endcode %}

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

***

## Remove verified icon

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-verified {display: none;}
```

{% endcode %}

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

***

## Change button background

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-follow-button  {background: red;}
```

{% endcode %}

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

***

## Change button color

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-follow-text  {color: red;}
```

{% endcode %}

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

***

## Remove follow button

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-follow-button  {display: none;}
```

{% endcode %}

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

***

## Change divider color

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-divider  {background: red;}
```

{% endcode %}

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

***

## Change divider width

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-divider  {width: 10px;}
```

{% endcode %}

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

***

## Remove divider

{% code overflow="wrap" %}

```css
.reputon-tiktok-widget .reputon-grid .reputon-divider  {display: none;}
```

{% endcode %}

<figure><img src="/files/LzCaPrlekeAiKQ1UzbTR" 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: 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/tiktok-feed-app/custom-style-codes/grid-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.
