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.
  2. Click Settings on the top rail.
  3. Select CSS/Design Edits in the left-hand menu.

2. Entering Your Custom Code

In the CSS editor:

/* 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;
}