We are creating a two-column layout for a promotion, which must be done in HTML. A modern drag-and-drop WYSIWYG like Squarespace or a block-style editor like Notion would be very helpful in scenarios like this. I poked around, and there seem to be open-source and white-label options. It’s a major undertaking, but it would have a good ROI regarding ease of use, customer satisfaction, and possibly fewer support requests.
By the way, is this code example from the forums still the best way to do a two-column layout?
<section class="block block--lightest block--agents">
<div class="container">
<div class="teasers teasers--2-col">
<div class="teaser__content">
<p><img src="/uploads/agent-1/lightning.gif" width="100%" alt=""></p>
<h3>Column 1 (width: 285px)</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus lorem. Aliquam erat volutpat.</p>
</div>
<div class="teaser__content">
<p><img src="/uploads/agent-1/lightning.gif" width="100%" alt=""></p>
<h3>Column 2 (width: 285px)</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus lorem. Aliquam erat volutpat.</p>
</div>
</div>
</div>