Line Breaks HTML Editor

From SMTX Wiki
Revision as of 14:20, 12 April 2017 by Smtxwiki (talk | contribs) (Created page with "By default the HTML editor provided by SSP shows linebreaks of the type </p> similar to linebreaks of the type <br />. This is caused by a stylesheet setting. In order to show...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

By default the HTML editor provided by SSP shows linebreaks of the type

similar to linebreaks of the type
. This is caused by a stylesheet setting. In order to show

as proper paragraph linebreaks, the following setting should be changed in your admin stylesheet (common/static/CustomerStyle/css/CustomerAdmin.css):

   p {
       display: block;
       margin-bottom: 1em;
       margin-left: 0;
       margin-right: 0;
   }