.................. WORDFLY FEATURE .................. I want to add the code that will allow me to adjust the 'all blocks' max width for heading bars in emails based on Starter Email E. For emails earlier than "WordFly 3.0.0.586" .................. SOLUTION .................. STEP 1. Open the HTML Editor at the bottom of your email. STEP 2. Scroll down to approximately line #235 Can't find it? Click inside the HTML editor. Hit Control-F to search for container-block > div STEP 3. Replace this code: .container-block > div { margin-left: auto; margin-right: auto; max-width: 600px; } .text-block { margin: 0 20px; } With this code: .button-block, .divider-block, .heading-bar-block, .heading-image-text-button-block, .heading-image-text-block, .image-text-button-block, .image-text-block, .image-block, .social-links-block, .text-button-block, .text-block, .three-columns-block, .two-columns-block, .video-block { margin-left: auto; margin-right: auto; max-width: 600px; } .column .text-block { margin: 0 20px; } STEP 4. Click Save