Creating an Editable Region in an HTML Template

An editable region is a section of an HTML template users can edit to customize documents based on the template. An HTML template must contain at least one editable region.

Note: This feature is available in Aprimo Marketing Studio 9.1 only.
  1. In the HTML document or HTML field of the HTML template record, place the cursor in the position to create the editable region.
  2. Type a <div> section for the editable region. The <div> section must contain a unique ID that contains the text _Container.
    Example:
    <div id="Editable_Container">Edit this region.</div>
  3. If you want to apply styles to the editable region, enclose it in a <div> section containing the style information. The <div> section can contain inline styles or a reference to a style in a style sheet.
    Example:
    <div style="background-color:green"> <div id="Editable_Container">Edit this region.</div> </div>
    Example:
    <div class="style01"> <div id="Editable_Container">Edit this region.</div> </div>