# Video banner widget

## Change widget text color

```css
/* change title color */
.reputon-youtube-widget .reputon-background-video .reputon-title
{color: red;}

/* change description color */
.reputon-youtube-widget .reputon-background-video .reputon-subtitle
{color: red;}
```

<figure><img src="/files/8IMXyeh9Aqc5utq3x0PY" alt=""><figcaption><p>title color</p></figcaption></figure>

<figure><img src="/files/vdktFIzGzusiMK6eSKj0" alt=""><figcaption><p>description color</p></figcaption></figure>

***

## Change widget font

{% code overflow="wrap" %}

```css
/* change widget font */
.reputon-youtube-widget .reputon-background-video,
.reputon-youtube-widget .reputon-background-video .reputon-title {font-family: Comic Sans MS !important;}
```

{% endcode %}

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

***

## Hide widget elements

{% code overflow="wrap" %}

```css
/* hide title */
.reputon-youtube-widget .reputon-background-video .reputon-title
{display: none;}

/* change description color */
.reputon-youtube-widget .reputon-background-video .reputon-subtitle
{display: none;}
```

{% endcode %}

***

## Change widget width

{% code overflow="wrap" %}

```css
.reputon-youtube-widget .reputon-background-video
{width: 650px !important;}
```

{% endcode %}

***

## Add margin above widget

{% code overflow="wrap" %}

```css
.reputon-youtube-widget .reputon-background-video
{margin-top: 100px !important;}
```

{% endcode %}

***

## Add margin below widget

{% code overflow="wrap" %}

```css
.reputon-youtube-widget .reputon-background-video {margin-bottom: 100px !important;}
```

{% endcode %}

***

## **Hide widget on mobile**

{% code overflow="wrap" %}

```css
@media (max-width: 460px) { 
	.reputon-youtube-widget .reputon-background-video { 
		display: none !important; }}
```

{% endcode %}

***

## Apply black-and-white filter

{% code overflow="wrap" %}

```css
.reputon-youtube-widget .reputon-background-video {filter: grayscale(100%);}
```

{% endcode %}

<figure><img src="/files/CPAy2rHG65urj1bM0WVe" 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/youtube-video-gallery/custom-style-codes/video-banner-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.
