It seems with ccs cache enabled, you loose the open quote image. Firebug shows that the callout doesn't even exist in the cached stylesheet. Works great with css cache disabled.

Any ideas on a fix?

Thanks.

Comments

jwolf’s picture

Status: Active » Needs review

Interesting.
I was losing the closing quote, not the opening quote.

Below is a modification to blockquote styles that seems to fix this.

 .content blockquote p {
   font-style: italic;
   margin: 0;
-  padding: 0 20px 8px;
+  padding: 8px 20px;
 }
 
-blockquote :first-child {
+blockquote p:first-child {
   background: url('images/open-quote.gif') no-repeat left top;    /* LTR */
-  padding: 10px 0 0 20px;    /* LTR */
+  padding: 0 0 0 20px;    /* LTR */
 }
Poieo’s picture

Status: Needs review » Fixed

Works like a charm. Thank you.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.