Hi,
I would like to change the width of my main column to 500px instead of 590px.
What would be the code to do that?
Thanks for your help!
Bryan
The blog I need help with is thebitehouse.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi,
I would like to change the width of my main column to 500px instead of 590px.
What would be the code to do that?
Thanks for your help!
Bryan
The blog I need help with is thebitehouse.com.
This depends on which theme you are using. I was able to check that and I see that you are using the Clean Home theme. You can adjust the width of the main column to 500px with this CSS:
#wrapper, .header, #footer {
width: 780px;
}
.content {
width: 500px;
}
.post img {
max-width: 470px;
}
Oh, and you should also update the limit width on the Appearance → Custom Design → CSS page to 470px. Also, note that you can adjust the widths above as necessary.
This topic has been closed to new replies.