Ok, I give. I have been weighed, I have been measured, and I have been found wanting.
(Sorry, A Knight's Tale reference, it was on like all weekend last weekend.) Anyways, I just can't figure out my problem here. I'm trying to add a Quotation mark using css before each excerpt on a blog summary page. Works as expected on the first post, but on all the following ones, it seems to shift left over just enough such that the Quotation mark is becomes an apostrophe. The css I'm using is:
.post-excerpt {
color: #777777;
font-family: serif;
font-size: 40px;
font-style: italic;
line-height: 1.35em;
margin: .5em 20px;
min-height: 32px;
padding: 0 0 0 55px;
}
.post-excerpt:before {
display: block;
float: left;
margin: 30px 15px 0 0;
font-size: 100px;
content: open-quote;
color: #bababa;
text-shadow: 0 1px 1px #909090;
}
.post-excerpt:after {
content: none;
}
You can see what I'm talking about at www.gavelpit.com .
Any guidance, direction, shots of cheap whiskey, would be greatly appreciated ! Thanks !!!
Amy