> ## Documentation Index
> Fetch the complete documentation index at: https://help.simpletix.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Advanced CSS Customizations

> Use custom CSS in SimpleTix to tailor fonts, colors, layouts, and more for a fully branded experience.

# Overview

For users who want finer control over styling, beyond basic theme or text changes, SimpleTix supports **custom CSS**. This allows you to modify fonts, button styles, spacing, and more to reflect your unique brand identity.

## 1. Accessing the CSS Editor

1. **Log in** to [Manager Portal](https://manager.simpletix.com).
2. Click **Settings** on the top rail.
3. Select **CSS/Design Edits** in the left-hand menu.
   * Or navigate directly to [https://manager.simpletix.com/general/css-editor](https://manager.simpletix.com/general/css-editor).

## 2. Entering Your Custom Code

In the **CSS editor**:

```css theme={null}
/* Sample CSS to change body text and button color */

body {
  font-family: 'Arial, sans-serif';
  color: #333333;
}

.button-class { /* Replace with actual button class */
  background-color: #ff6600;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
}
```
