What do you mean cursive? A custom embedded font?
You might have to increase the left and right padding values. The value of 0.2em is used in the patches, (and my .css example) simply because that seems to be enough margin to avoid the problem, but other fonts might need more.
My css is a little different from yours.. I haven't examined in detail to see what the difference would be, but I use:
body {
margin: 0 !important;
padding: 0 !important;
}
body>div {
padding-left: 0.2em !important;
padding-right: 0.2em !important;
}
And for those suggesting that patches are the answer, pls take a moment to actually read the patches and see what it actually does?
Last edited by rashkae; 02-04-2018 at 07:35 PM.
|