View Single Post
Old 10-22-2013, 10:25 AM   #102
jswinden
Nameless Being
 
Quote:
Originally Posted by JSWolf View Post
Very nice. That is one thing that has bugged me about the Kindle is the forced margins. Getting rid of them so easily is very good.
Unfortunately the following CSS wouldn't work:

Code:
body { left-margin:-40px; right-margin:-40px; }
Or a class placed inside BODY tag:

Code:
.bodyMargins { left-margin:-40px; right-margin:-40px; }
Or this:

Code:
* { left-margin:-40px; right-margin:-40px; }
This works fine. I haven't tried DIV tags

Code:
p { left-margin:-40px; right-margin:-40px; }
It would have been so much easier if it worked from inside the BODY tag.
  Reply With Quote