Line Breaks HTML Editor: Difference between revisions
Jump to navigation
Jump to search
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..." |
m 1 revision imported |
(No difference)
| |
Latest revision as of 22:44, 25 May 2020
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;
}