Which theme are you using?
Without being able to view your site or look at the theme it is hard to say. Also, know that if you copy/paste content in the editor when in Visual Mode (top right of the editor area), then it will paste any inline styles. If you have extra <p> tags in there, it sill keep them as separate paragraphs.
So it looks like you’re making changes directly to the theme’s stylesheet. You should be aware that editing the theme files directly is not suggested. If the theme gets updated because of feature enhancements, bug fixes, or security patches, or if the theme has to be updated because of a change to the WordPress core, then your changes will be lost. Instead, either create a child theme or use a CSS plugin like Jetpack or Custom CSS Manager.
What’s causing the content to shift to the right is the float:right; property in this rule:
.postEntry {float:right; width:530px; padding:15px 20px 30px 0;}
You can add these rules to clear the float, center the content, and remove the double lines to the left of the store page:
#content {
border: 0;
}
.page .postEntry,
#content {
float: none;
margin: 0 auto;
}
I’m so sorry, I don’t know how I didn’t see these responses before. CrouchingBruin, I just made the changes you suggested and it worked on all pages except the blog page. There is still a huge amount of space between the post and the tags on left hand side. Any thoughts? And I’m using Custom CSS now that I know better, thank you 🙂
Just modify the second rule to look like this:
.blog .postEntry,
.page .postEntry,
#content {
float: none;
margin: 0 auto;
}
You may also want to adjust the width of the content on the blog page, which is currently 530px. It’s 630px on your non-blog pages, so you may want add a rule like this:
.blog .postEntry {
width: 630px;
}
Done and done and she looks great! Thank so much 🙂