Skip to content

Changing email page width

edited April 2020 in Questions

Hello,

I am trying to work out how to limit the page width of my emails and get the text to wrap at approx 500px wide.

I have tried inserting

<div style="width:500px;"> 

</div>

I have tried putting that before the first , then after it. Then tired another way and put it before the first .
I can't see to get it right.

Can someone help with the code/method please?

If it is code, what is best? Where does it go?

The code for the basic page is as follows...

<html>
<head>
    <title></title>
</head>
<body></body>
</html>

Thanks for your help too! :-)

Comments

  • I would assume that unless there is CSS to change the width elsewhere in the document, this should do the trick.

    <html>
    <head>
        <title></title>
    </head>
    <body>
    <div style="width:500px;"> 
    YOUR CONTENT HERE
    </div>
    </body>
    </html>
    
  • Thanks Digital Dan!

This discussion has been closed.