|
I was messing with this for a minute and found that if you put: text-align: center; within the body{} it will center the template, as well as all of your text, but I just put: text-align: left; within the #container{} and that fixed that problem. Should work for you too, give it a shot.
body {
background-color: #C0C0C0;
background-image: url('1.png');
font-family: Verdana;
font-size: 82%;
font-color: #90B854;
text-align: center;
}
h1, h2, h3,h4, h5,h6 {
font-weight: bold;
margin-bottom: .2em;
}
h1 { font-size: 1.6em;}
h2 { font-size: 1.5em;}
h3 { font-size: 1.4em;}
h4 { font-size: 1.3em;}
h5 { font-size: 1.2em;}
h6 { font-size: 1.1em;}
#container {
width: 640px;
margin: 0 auto;
text-align: left;
}
good luck
|