Mailchimp'Style Declaration Block'无效

时间:2017-01-13 02:59:04

标签: css email mailchimp

我的电子邮件中有一些自定义样式,我想在WYSIWYG编辑器中使用。我跟着this guide,但我的风格没有出现。我能做些什么不同的事情?另外,有没有办法删除未使用的样式,如 TOC heading

  /**
  * @tab Page
  * @tip Set the styling for all first-level headings in your emails.
  * @style heading 1
  */
  h1{
    line-height:1;
    font-weight:bold;
    color:#24a9a4;
    font-family:Source Sans Pro,Helvetica,Arial;
    text-shadow:2px 2px 0 #ffde17;
    margin:5px 0;
    font-size:65px;
  }

在电子邮件中,样式看起来很好:

enter image description here

但是在下拉菜单中我看不到任何风格:

enter image description here

1 个答案:

答案 0 :(得分:1)

/**
* @tab Page
* @section Heading 1
* @tip Set the styling for all first-level headings in your emails.
* @style heading 1
*/
h1{
  /*@editable*/ line-height:1;
  /*@editable*/ font-weight:bold;
  /*@editable*/ color:#24a9a4;
  /*@editable*/ font-family:Source Sans Pro,Helvetica,Arial;
  /*@editable*/ text-shadow:2px 2px 0 #ffde17;
  /*@editable*/ margin:5px 0;
  /*@editable*/ font-size:65px;
}

尝试将/ @editable /添加到每一行。