thestormtrooper
Member
Posted 4 years ago #
Hi,
Can someone tell me how I can align my posts into the centre of the page?
http://www.stuartjackson.co.uk/v1/blog/?p=111
As you can see they are off centre. The index page looks fine though I think. If someone could let me know the bit of code I change to align the posts (permalinks) that I've made to the centre I'd appreciate it.
Thanks.
Play around with this in your css a bit. For instance, changing the left margin from 150px to 120px helps...
.widecolumn {
padding: 10px 0 20px 0;
margin: 5px 0 0 150px;
width: 500px;
}
Or you could try this.
.widecolumn {
margin: 5px auto;
thestormtrooper
Member
Posted 4 years ago #
cheers. sorted, thanks for the help.