Re: Increasing width in an email

Anonymous
Not applicable

Increasing width in an email

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.
Tags (1)
3 REPLIES 3
Anonymous
Not applicable

Re: Increasing width in an email

The styling needs to be defined inside the opening tag. Try:

<td width="600px"></td> 
Anonymous
Not applicable

Re: Increasing width in an email

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? 
Anonymous
Not applicable

Re: Increasing width in an email

<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>