Your wp-layout.css currently defines only a left padding and margin:
blockquote {
margin-left: 1.5em;
padding-left: 10px;
}
Edit the file and include something like margin-right: 1.5em; or whatever you had in mind.
you have a ton of validation errors. fixing those might solve some issues.
I’ve been playing around a bit with your CSS…it’s got me stumped for the moment, but I’ll keep messing with it. 🙂
Any one else have a guess (I cleaned up most of the validation errors and the only ones left are from the
- on the side menu. I can’t imagine that is the culprit.)
Okay……..
it’s widths
#content p {
font-size: 11px;
}
Get rid of the other stuff in that above.
.storycontent {
font-size: 11px;
text-align: justify;
width: 480px; <—————-change to that
margin: 4px 0 0 0;
}
blockquote {
margin: 0 50px;
border-left: 1px solid #DDD;
}
For now have that.
You had two different elements at a width of 500px, yet one was meant to sit in another, and then another element in the second could break through….
plonk those in and we’ll go from there.