Hi, I've created a new page on my site.
The text is right up against the left hand side how do I get the
text over a bit <center> has not worked. http://www.see360degrees.com.au/testimonals.html
Thanks.
| SitePoint Sponsor |
Hi, I've created a new page on my site.
The text is right up against the left hand side how do I get the
text over a bit <center> has not worked. http://www.see360degrees.com.au/testimonals.html
Thanks.

Try either or both margin-left: 1em or padding-left: 1em


Presumably you want your content centered just like the content in the header section. Presuming you are going to have a sidebar too, I would suggest that you wrap your .content_630 div in a wrapper:
and then style it like so:Code:<div class="content"> <div class="content_630"> </div> </content>
Code:.content { margin: 0 auto; width: 960px; overflow: hidden; }


Bookmarks