> For the complete documentation index, see [llms.txt](https://mobidonia.gitbook.io/mresto/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mobidonia.gitbook.io/mresto/usage/custom-css.md).

# Custom CSS

The preferd way to change the CSS is to inspect the elemtn, find the class and overwrite its css styling via the Admin->Settings->CSS & JS tab. There you can define your own CSS styling overwrite.&#x20;

For example, let's change the frontpage initial blue theme to red. This is the CSS you need.

```
.bg-primary  {
    background-color: #ff0000 !important;
}

.headroom--not-top.navbar-theme-primary {
    background-color: #ff0000 !important;
}

.btn-primary {
    background-color: #ff0000  !important;
}
```

And you can do this for every ID or class inside the html.&#x20;
