> For the complete documentation index, see [llms.txt](https://docs.intelliticks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.intelliticks.com/customizing-platform/widget/advanced-customization/how-to-easily-add-custom-css-to-chat-widget.md).

# How to Easily Add Custom CSS to Chat Widget

## Changing look-and-feel using Custom CSS

{% embed url="<https://youtu.be/E_ciA1j8oUo>" %}

### Steps to add your Custom CSS

1. Login to [Admin Portal](https://app.intelliticks.com/)
2. Go to Settings > Chat widget > [Custom CSS](https://app.intelliticks.com/v2/settings/chat-widget/custom-css)
3. Add your Custom CSS and save.
4. You are done.

## Examples of Custom CSS change&#x20;

#### 1. Changing Bot's Text

To change bot or agent's text, modify classes "***.agent .iticks-message-text***"

For example - To change the bot's text color to blue and capitalize all words, we can use this custom CSS.

```bash
.agent .iticks-message-text {
    color: blue;
    text-transform: uppercase;

}
```

|             **From**             |                                                                                       |              **To**              |
| :------------------------------: | :-----------------------------------------------------------------------------------: | :------------------------------: |
| ![](/files/-MRlDlkEaNPl2pOYLVPK) | <p></p><p><a href="https://emojidictionary.emojifoundation.com/right_arrow">➡</a></p> | ![](/files/-MRlDjAR9xIjWNAovFns) |

#### 2. Changing Submit button of Form Node

To change the submit button of the Form node, modify class "**.it-button**"

For example - To change the background and text color of Submit button, we can use this custom CSS.

```bash
.it-button {
    background: burlywood;
    border: burlywood;
    color: black;
}
```

From&#x20;

![](/files/-MRlFK2CL84Vud4jb5Gd)

to

![](/files/-MRlFPvMHmsIHIjmTUl_)

#### 3. Changing Quick Reply node's buttons

To change the buttons of the QuickReply node, modify class "**.qrnode**"

For example - To change the background and text color of the QuickReply node's button, we can use this custom CSS.

```bash
.qrnode {
   background: chartreuse;
   border: 1px solid black;
   color: black;
}
```

From&#x20;

![](/files/-MRlG7iCOhFo-YDQarrt)

to

![](/files/-MRlGBAnwY1IFiavJDCH)


---

# 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://docs.intelliticks.com/customizing-platform/widget/advanced-customization/how-to-easily-add-custom-css-to-chat-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.
