View Single Post
Old 10-22-2013, 10:30 AM   #1649
jswinden
Nameless Being
 
Quote:
Originally Posted by booklover6 View Post
Ok, what is the exact code you used, and does it go in the Look & Feel under extra CSS, if not, then where? This is exactly what I need!!!
What Works

This works fine. I haven't tried DIV tags yet. Just add this to your CSS stylesheet.

Code:
p { left-margin:-40px; right-margin:-40px; }
What Does NOT Work

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; }
Summation

It would have been so much easier if it worked from inside the BODY tag. Since not all tags are P tags, we need to cover the other tags as well. Possibly DIV tags can be used, I'll have to test later.

Last edited by jswinden; 10-22-2013 at 10:34 AM.
  Reply With Quote