How to add css in zoho mail templates

Zoho Mail allows you to add custom CSS to your email templates to enhance the design and layout. Here are the steps to add CSS to your Zoho Mail templates:

Method 1: Using the Zoho Mail Template Editor

  1. Log in to your Zoho Mail account and go to the "Templates" section.
  2. Click on the template you want to edit and then click on the "Edit" button.
  3. In the template editor, click on the "HTML" tab.
  4. In the HTML code, add your CSS code inside the <style> tags. For example:
    <style>
    /* Your CSS code here */
    body {
     background-color: #f2f2f2;
    }
    .header {
     background-color: #333;
     color: #fff;
    }
    </style>
  5. Save the changes to the template.

Method 2: Using an external CSS file

  1. Create a new file with a .css extension (e.g., style.css) and add your CSS code to it.
  2. Upload the CSS file to your website or a cloud storage service like Google Drive or Dropbox.
  3. In your Zoho Mail template, add a link to the external CSS file using the <link> tag. For example:
    <link rel="stylesheet" type="text/css" href="https://example.com/style.css">
  4. Replace https://example.com/style.css with the actual URL of your CSS file.
  5. Save the changes to the template.

Tips and limitations

By following these steps, you should be able to add CSS to your Zoho Mail templates and enhance their design and layout.