WHMCS Configuration

Tips and instructions on how to get the best of the theme and let it look best with your WHMCS settings.

Product Configuration

  1. Do not press the "Enter" button between HTML tags. WHMCS treats each "enter" as a <br/> tag which will break the layout. Preview of an exemplary customization below:
    Package
  2. Remember to use this layout if you want to create a list of features:
    <ul class="package-features"><li>Feature 1</li><li>Feature 2</li></ul>

Example 1: List only

Code

<ul class="package-features"><li><b>1 year</b> of theme updates<div data-toggle="tooltip" title="test">?</div></li><li><b>1 year</b> of support</li><li>License for <b>1 domain</b></li><li>HTML version of theme</li></ul>

Output

Package

Example 2: Description only

Code

<p>License perfect for company running under one domain name</p>

Output

Package

Example 3: Description + list

Code

<ul class="package-features"><li><b>1 year</b> of theme updates<div data-toggle="tooltip" title="test">?</div></li><li><b>1 year</b> of support</li><li>License for <b>1 domain</b></li><li>HTML version of theme</li></ul><p>License perfect for company running under one domain name</p>

Output

Package