Hello Ive made a page which has an image of width 1300px as its widest point. I’m trying to make something which makes the page load with the centre of the page (where text etc. resides) in the middle of the browser. Is there a simple way of doing this?
Share
in CSS, do this:
body: { text-align: center } #main { text-align: left margin: 0 auto; }The text-align center is for old IE6, whereas margin works for newer browsers. #main is your main div that is to be centered.