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.
|