Hi there,
I'm working on a customers website where someone added a background color to all the emails. Not the body of the email, but an actual background.
Where would one able to remove that?
Posted 15 January 2020 - 12:42 AM #1
Hi there,
I'm working on a customers website where someone added a background color to all the emails. Not the body of the email, but an actual background.
Where would one able to remove that?
Posted 15 January 2020 - 06:14 AM #2
Out of the box styles are located at the top of the Header snippet. Start from checking this
GET A FREE QUOTE | CS-Cart Add-ons | CS-Cart Licenses | CS-Cart Development | CS-Cart Design | Server Configuration | UniTheme and YOUPI
CS-Cart USD 1210 Multi-Vendor USD 1250 Multi-Vendor PLUS USD 3100 (2775)
CS-Cart Ultimate USD 4025 CS-Cart + YOUPI USD 1459 Multi-Vendor Ultimate USD 7500 (6000)
Posted 19 January 2020 - 11:46 AM #3
By the looks of it, the background is not in the snippet. Strangely enough.
Might be hardcoded somewhere?
Posted 20 January 2020 - 06:14 AM #4
Right, find the following line of code in the Header snippet
<table class="main-wrapper" cellpadding="0" cellspacing="0" width="100%" bgcolor="{{ styles.base }}" style="background-color: {{ styles.base }}" dir="{{ language_direction }}">
for example, you can change it to
<table class="main-wrapper" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffccff" style="background-color: #ffccff" dir="{{ language_direction }}">
GET A FREE QUOTE | CS-Cart Add-ons | CS-Cart Licenses | CS-Cart Development | CS-Cart Design | Server Configuration | UniTheme and YOUPI
CS-Cart USD 1210 Multi-Vendor USD 1250 Multi-Vendor PLUS USD 3100 (2775)
CS-Cart Ultimate USD 4025 CS-Cart + YOUPI USD 1459 Multi-Vendor Ultimate USD 7500 (6000)