• sandra408

    (@sandra408)


    Hello.

    Does anyone know how to change a theme page width for MailPoet newsletter plugin. All their themes are set to 600 px wide and I need it to be at least 668px… The css file is very limited to what it can do…

    I also can’t figure out how to put 3 images in a raw from MailPoet admin. panel. It only allows me to put an image and text next to it. Tried to use it in code mode, still nothing works…

    Tried to contact them, but their email form does not work…

    Thanks.

Viewing 1 replies (of 1 total)
  • themps

    (@themps)

    I was looking into this also. The only way to do it that I’ve found is to edit an HTML file within the plugin itself. It’s called email_template.html.

    /wp-content/plugins/wysija-newsletters/tools/templates/newsletter/email/email_template.html

    This is use at your own risk. I haven’t fully vetted it but it seems to work just fine. And all footer images etc would have to match. But it would needed to be changed every time you update the plugin. And if you have something comparing the files to the repository like WordFence you would need to keep that in mind because it will likely flag it as a problem.

    This really should be a setting option somewhere as a variable. 600 px is not a one size fits all.

    I changed the width on all these….900 was 600….

    <table width="100%" cellpadding="0" cellspacing="0" border="0" id="wysija_wrapper">
            <tr>
                <td valign="top" align="center">
                    <table width="900" cellpadding="0" cellspacing="0" border="0" align="center">
                        {if ! #hide_viewbrowser}
                        <tr>
                            <td width="900" style="min-width:900px;" valign="top" align="center" {if #is_rtl} dir="rtl" {/if}  >
                                {#viewbrowser}
                            </td>
                        </tr>
                        {/if}
                        <tr>
                            <td width="900" style="min-width:900px;" valign="top" align="center">
                                {#header}
                            </td>
                        </tr>
                        <tr>
                            <td width="900" style="min-width:900px;" valign="top" align="left">
                                {#body}
                            </td>
                        </tr>
                        <tr>
                            <td width="900" style="min-width:900px;" valign="top" align="center" {if #is_rtl} dir="rtl" {/if}  >
                                {#footer}
                            </td>
                        </tr>
                        {if ! #hide_unsubscribe}
                        <tr>
                            <td width="900" style="min-width:900px;" valign="top" align="center" {if #is_rtl} dir="rtl" {/if} >
                                {#unsubscribe}
                            </td>
                        </tr>
                        {/if}
                    </table>
                </td>
            </tr>
        </table>
Viewing 1 replies (of 1 total)
  • The topic ‘MailPoet – how to change a custom theme page width’ is closed to new replies.