Line Breaks HTML Editor

From SMTX Wiki
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;
   }