Quote:
Originally Posted by Sirtel
It can be done with conversion as well. Just put the following code in Look & Feel -> Styling -> Extra css:
Code:
html {
margin-left: -25px;
margin-right: -25px;
}
That's what I use, but of course you can make the margins larger or smaller, as you wish.
|
Your code is incomplete. There is one line that may sometimes be needed and when it's not needed, it's not in the way.
Code:
html {
margin-right: -25px;
margin-left: -25px;
break-inside: avoid !important;
}
I don't remember why the break is needed sometimes. I just know that it is.