Quote:
Originally Posted by JSWolf
Will PB respect the margins in <p> if you do something like...
Code:
p {
margin-top: 2em;
margin-right: 0;
margin-bottom: 2em.
margin-left: 0;
}
I know the nook had an issue with a margin shorthand.
|
By enabling author-based margins (a hidden feature deep within the application's settings), PB honors the margins specified in the style sheet.
However, if the user happens to modify the page margins using the easily accessible command in PB's main menu, the program not only modifies the page margins, but also all the margins, including paragraph margins. Thus, the specific values specified in the style sheet are no longer honored.
The only way for these margins to remain unchanged even when the user changes the page margins is to use <div> tags instead of <p> in paragraphs where a special margin is required. Terrible handling of margins by PB.