Customization
Learn how to edit and customize your theme.
There are two ways to customize Boost:
- CSS overrides - A simple method using compiled CSS.
- SCSS customization - A more advanced approach with build tools.
CSS overrides
The easiest way to modify the theme is by using the compiled files in the dist/
folder.
- Create a
custom.css
file inassets/css/
. - Link it after
style.css
in the<head>
of your pages. - Add your CSS rules in
custom.css
to override the theme’s styles.
<link rel="stylesheet" href="assets/css/custom.css">
Customizing SCSS
For more control, you can edit the SCSS source files. This is recommended if you're familiar with build tools and SCSS syntax.
Inside src/assets/css/
, you'll find:
_user-vars.scss
- Define custom variables._user.scss
Add your custom styles.
Modify and compile these files to extend or override the theme’s styles.