Yes I appreciate it is a styling issue but am assuming the plugin includes styling control. What does email-css.css.control? I know my wordpress [theme] css and what that controls but the object in question is the email sent by the plugin, which is not native to wordpress or my theme.
In the template editor for the email I can add inline styles there successfuly but they apply to the entire block not what’s within the block.
<p style = “margin-bottom:20px;”>.
%EMAIL_POST_TITLE%
</p>
This will work. But if the style is defined in external {ie theme css) it will not eg
<p class=”wp-email-post-title”>
%EMAIL_POST_TITLE%
</p>
My questions……..
1. Does the variable %EMAIL_POST_CONTENT% include the html tags of the post ie …….
<p>This is my post first paragraph.</p>
<p>This is my post second paragraph </p>
or have they been stripped ie……….
This is my post first paragraph
This is my post second paragraph
2. If a css style is declared in email-css.css will this be applied to the email post content eg
#wpmail {}
#wpmail p {margin-bottom: 20px;}
Then in the template editor……
<div id=”wpmail”>
%EMAIL_POST_CONTENT%
</div>
Thanks for your help.