Skip to content

How do I add a section header with a color background?


Section headers with a color background can be added with standard HTML. These headers are H4 tags with a CSS class applied to it. 

Creating a Section Header with a Color Background

  1. In the text editor, click the HTML button to view the page's HTML code.
  2. Locate where you want to place your header.
  3. Type <h4 class="colorblock">
  4. Type in your header text.
  5. Type </h4>
  6. Now, save and preview your work.

Additional Options

There are three color choices for the headers at this time. These choices are gray, blue and red. This is designated in the class declaration of the H4 tag after colorblock. 

Usage Example:

<h4 class="colorblock red">This is VERY Important.</h4>



Feedback and Knowledge Base