# Custom CSS

Administrators can supply custom CSS that overrides elements of their site's pages. The settings live in the Admin Dashboard under *Admin Settings > Branding > CSS*.

Before changing a site's CSS, review the ExaVault Site Branding documentation. Many appearance options are already configurable there without writing CSS.

This is an advanced feature. Incorrect CSS definitions can make the site unusable.

The following example reduces the padding on the tabs at the top of the Site Branding configuration screen, producing a slightly more compact tab strip:

```
.nav > li > a {
  padding: 5px; 5px;
}
```

The full collection of CSS selectors is available at `https://[your_domain]/ftp/static/css/site.css`.


---

# 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://docs.exavault.com/using-exavault/customizing-your-site/custom-css.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.
