From dd4b7e4d1c74eaecf7b53a41c8902736a6f61433 Mon Sep 17 00:00:00 2001 From: Vlad Date: Thu, 7 Apr 2016 15:51:50 -0400 Subject: [PATCH] - Adds lines heights to LIs --- lib/Newsletter/Renderer/Blocks/Text.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Newsletter/Renderer/Blocks/Text.php b/lib/Newsletter/Renderer/Blocks/Text.php index 9d2e71db1b..64648588c1 100644 --- a/lib/Newsletter/Renderer/Blocks/Text.php +++ b/lib/Newsletter/Renderer/Blocks/Text.php @@ -115,8 +115,9 @@ class Text { $list->class = 'mailpoet_paragraph'; } else { $list->class = 'mailpoet_paragraph'; - $list->style .= 'line-height:' . StylesHelper::$line_height . ';padding-top:0;padding-bottom:0;margin-top:10px;margin-bottom:10px;'; + $list->style .= 'padding-top:0;padding-bottom:0;margin-top:10px;margin-bottom:10px;'; } + $list->style .= 'line-height:' . StylesHelper::$line_height . ';'; } return $DOM->__toString(); }