Adding heading to CMS Templates

  • I am building a 3 column layout and it works ok. In the screen shot you'll see each column gets 2 fields. A title and text. Is there a way in the CMS to give each of these titles so its clearer for the user when they update? Thats the code below in my template


    <div>


    Do I add something here to make it a title only visible on the CMS side?


    <h3><perch:content id="Heading_l" type="text" label="Provide a title" required="true" title="true" /></h3>
    <p><perch:content id="Content_l" type="text-area" label="Add your content" required="true" title="true" /></p>
    </div>
    <div>
    <h3><perch:content id="Heading_m" type="text" label="Provide a title" required="true" title="true" /></h3>
    <p><perch:content id="Content_m" type="text-area" label="Add your content" required="true" title="true" /></p>
    </div>
    <div>
    <h3><perch:content id="Heading_r" type="text" label="Provide a title" required="true" title="true" /></h3>
    <p><perch:content id="Content_r" type="code-block" label="Add your content" required="true" title="true" /></p>
    </div>

  • drewm

    Approved the thread.