Increasing width in an email | Community
Skip to main content
August 13, 2014
Question

Increasing width in an email

  • August 13, 2014
  • 3 replies
  • 955 views
I'm currently trying to increase the width of one section in an email by adding <td>width=600px</td> but it does not seem to be working. It needs to go next to <td class="mktEditable" id="six" > and was wondering if anybody could help me. Thanks.
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

August 13, 2014
The styling needs to be defined inside the opening tag. Try:

<td width="600px"></td> 
August 13, 2014
I've tried doing <td class="mktEditable" id="six" > (content in this section) </td> <td width="600px"></td>  and it changes the template. I just want that section to be stretched out a bit further so it fits with everything else. Can you see what I'm doing wrong? 
August 13, 2014
<td> is the HTML tag for creating a cell/field. Class and width are used to define styling for that cell/field. 
 
Try:
<td class="mktEditable" id="six" width="600px">Content here</td>