Could someone please advise me how to align all the content inside a table or div so that all the content is aligned in the middle with a 770 width?
I have tried several files/attempts but can only get some of it to work.
Some more info on this page:
Hi,
I think the "standard" way to do this is by setting a width, together with margin: auto. Try making the body section of your CSS something like this:
body {
font-family: tahoma,helvetica,sans-serif;
font-size: small;
color: #333;
width:770px;
margin:0px auto;
}
Hope this helps...!