Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

formatting my post pages WordPress

  • SOLVED

Here is my a link to one of my blog posts:

http://melissa-mcmahon.com/?p=575

I would like to center the post in the screen, along with the pictures (titles can stay justified to the left in line with the centered block of text) and I would like to get rid of the text that is happening in the "sidebar".

I would like it to look more like this:
http://eatmakeread.com/2010/10/27/apple-cheddar-oatmeal-cookies/

without the two sidebars on either side.

Answers (1)

2010-10-29

idt answers:

Try adding this to the bottom of your style.css


.single .post{
float:none;
margin:0 auto;
overflow:hidden;
width:600px;
}
.single .post .entry-meta {
display: none;
}