Posts

Showing posts from September, 2018

Emarsys Anomaly in VCE

Image
Issue with Visual Content Editor (VCE) of Emarsys Template Emarsys is more than an email sending platform. It gives marketing insights based on the transactional data, products recommendation for email and web from predict system, in addition to ESP facilities like Send Time Optimisation, Visual Content Editor programmable sending etc. You can have CRM ads, SMS campaigns and Push notifications.  For VCE, you can build block based templates. Using these templates, one can easily create any number of emails. This is about an issue I noticed while creating a template. I wanted a button with options to change the text format, text content and text link. The typical code for this is as follows <tr> <td> <table cellspacing="0" cellpadding="0" border="0" width="100%"> <tr> <td align="center"> <table cellpadding="10" cellspacing="0" border="0" bgcolor=...

How to move objects vertically in mobile view

Image
Here is the desktop view. The image on the right needs to be pushed down in mobile view. The code is set to move down the right image (or any object) if the width of the screen is below 600px. Here is the mobile view.  Essential CSS code for bringing this effect  Place the below code within <style type="text/css"> .......... </style> @media only screen and (max-width:600px) { td.two-col { display: block!important; width: 100%!important; } .boxShift td { width: 50%!important; } .boxShift td table { width: 100%!important; } } @media only screen and (max-width:600px) { #boxShift, .boxShift { width: 100%!important; } } @media only screen and (max-width: 600px) { body .hide { display: none !important; } body .singlefile { width: 100% !important; max-width: 300px !important; display: block !important; } } Essential HTML code <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Object shift down i...