How to add Custom CSS and Custom JS?

To add custom CSS and JS to your site, all you have to do is add your CSS/JS to the corresponding files in the angapp/custom/ folder. If you use this method then you can still receive auto updates for your website.

CSS: angapp/custom/custom.css
JS: angapp/custom/custom.js

For example, to hide the ‘Optional’ text from the Basics step, you can add this to your custom.css:

campaign-basics-form .optional-text {
  display:none !important;
}