From 23aa702c7d0c87bb3cba3347ab4d96ff9d76396e Mon Sep 17 00:00:00 2001 From: Vinh Lam Date: Mon, 15 Jun 2015 15:35:43 -0700 Subject: [PATCH] Update text align classes so they can be applied on spans --- css/skeleton.ontraport.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/css/skeleton.ontraport.css b/css/skeleton.ontraport.css index 99f3f4f..32aa88c 100644 --- a/css/skeleton.ontraport.css +++ b/css/skeleton.ontraport.css @@ -161,13 +161,19 @@ Fonts * https://github.com/xing/wysihtml5/wiki/Supported-Commands */ .wysiwyg-text-align-center { - text-align: center; + display: inline-block; + width: 100%; + text-align: center; } .wysiwyg-text-align-left { - text-align: left; + display: inline-block; + width: 100%; + text-align: left; } .wysiwyg-text-align-right { - text-align: right; + display: inline-block; + width: 100%; + text-align: right; } \ No newline at end of file