Line Breaks HTML Editor

From SMTX Wiki
Revision as of 21:44, 25 May 2020 by Smtxwiki (talk | contribs) (1 revision imported)
(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;
   }