View Single Post
Old 01-02-2015, 09:41 PM   #4
AngelaQs
Junior Member
AngelaQs began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2015
Device: Kindle
older nooks don't like compacted margin calls, so for instance, you can't do this for your P tags:

margin: 0 2em 0 2 em;

or any kind of variation thereof. Instead you need to do this:

margin-top: 0;
margin-right: 2em;
margin-bottom: 0;
margin-left: 2em;

at least that's what I discovered after pulling my hair out earlier this week. When I exploded my code, it worked.
AngelaQs is offline   Reply With Quote