Creating CSS Classes to Use in Instructions

You can create CSS classes in the customize.css file (/opt/aspera/faspex/public/stylesheets/custom/customize.css), which you can then use when editing email notifications or package instructions. For more information on the customize.css file, see Creating a Custom CSS File.

  1. Create the customize.css file at /opt/aspera/faspex/public/stylesheets/custom/customize.css if it does not yet exist.
  2. In this file, create a CSS class.
    For example, create a class for the color red:
    .red {
        color:red;
    }
You can reference any classes you create when editing email notifications or package instructions. For example, when editing login instructions to Faspex, you can make the text red as follows:
<h1 class="red" style="text-align:center">Welcome to Faspex!</h1>
Login with your Faspex credentials. If you do not have an account, contact the admin at <a href="mailto:johndoe@faspex.com">johndoe@faspex.com</a>.