
Originally Posted by
knuckle-101
Why is everything based left? Anyway to center it?
Cause I designed it that way. Cause I like left-based sites. Cause there's no law saying every site has to be centered.
Anyway, I had been planning on posting centering instructions, it's easy to do. Here are the instructions for centering Nifty_Zen.
Step 1.
Open includes/templates/nifty_zen/css/stylesheet_new.css.
Find #outermainWrapper
add these tags to it:
Code:
text-align: center;
margin:0 auto;
and also in #outermainWrapper change
Code:
padding:8px 8px 8px 0;
to
Step 2.
Add this to stylesheet_new.css
Code:
#logo {
margin-left:5px;
}
(that moves the logo out of the way for the left rounded corners that we'll do next)
Step 3.
Open includes/templates/nifty_zen/jscript/jscript_niftyalayout.js
change
Code:
Nifty("div#mainWrapper", "big right");
Nifty("div#outermainWrapper", "big right");
to
Code:
Nifty("div#mainWrapper", "big");
Nifty("div#outermainWrapper", "big");