newb type CSS question

SuperDuran

Newbie
Joined
Apr 18, 2012
Messages
41
Reaction score
14
Hello everyone!

I'm having a hard time centering my web site. I am use the Business Card theme from Elegant Themes. (first link when googling "business card elegant themes")

I pin pointed the culprit to this code below in the main css file.

Code:
#page-wrap { width: 810px; margin: 0 auto; position: absolute; top: 25%; left: 20%; }

I figured if I do,

Code:
#page-wrap { width: 810px; margin: 0 auto; }

I get my site centered horizontally. Though I would like that 25% padding on the top which I had before. How do I go about doing that? For the life of me I can't figure it out. I know the crude way would be put a few BR codes (new line) to get the site pushed down a bit, but don't want to go that route.

Any help appreciated!
 
Code:
#page-wrap { position: absolute; top: 25%; width: 810px; margin: 0 auto; }
 
You can use the padding code to do what you are trying. If you add that attribute to your code then you will get your desired result.
 
Back
Top