How do i remove the background colour in emails like my confirmation email it sends out has a grey background where i would prefer white
Announcement
Collapse
No announcement yet.
How do i remove the background colour in emails
Collapse
X
-
You can edit the HTML email layout and define the colour you want.
JennyHanson Web Design
www.hansonwebdesign.co.uk
jenny@hansonwebdesign.co.uk
Actinic hosting, Actinic Software, template design and re-design
-
set the span style on the td for that part to, or whereever you want to change it :
background: #ffffff;
JennyHanson Web Design
www.hansonwebdesign.co.uk
jenny@hansonwebdesign.co.uk
Actinic hosting, Actinic Software, template design and re-design
Comment
-
Chris - just done mine, in the design tab (view next to orders) choose customer email, then edit the code - there are various instances of palette1 / 2 bg etc, I simply change my palette 1 in there to a much better palette 2 but you can replace with colour codes like ffffff for white etc...
as always backup first!
Comment
-
Simplest way to change the central part of the email to a white background is to open the HTML Email Layout in the Library (Layouts tab, ) and change
Code:<td style="background: <actinic:variable name="Palette1" />">
Code:<td style="background: white">
Code:<table cellspacing="20" style="padding: 20px; clear: left; overflow: hidden; background: <actinic:variable name="PaletteBG" />; color: <actinic:variable name="TextColor" />; border: 2px dotted <actinic:variable name="Palette2" />">
Code:<table cellspacing="20" style="padding: 20px; clear: left; overflow: hidden; background: white; color: <actinic:variable name="TextColor" />; border: 2px dotted <actinic:variable name="Palette2" />
Comment
Comment