
Announcements
Hi,
I'm facing problems on how do we send 2 or more tables with different styling.
I've tried to compose each table with different css, but the output in email still the same follows the first table's css.
Thanks in advance
@reyaldi7 You can try two things:
From what I can see in your screenshots it looks like you'd like to change the background color of your second table to grey. It would look like this:
background-color: grey !important;
Instead of using CSS, use inline styles only. Some email clients ignore css anyway. Instead, use inline styles to avoid needing to override CSS.
Hope this helps!