<blockquote> issue on wordpress site

both has <blockquote> wrapped around it but the first one correctly shows double quote sign and the next one just one. I tried by removing the first one and the second one gained double quote sign. Is that a bug or something in wordpres

This is the link to the source

I believe you will find the explanation here:

http://www.w3.org/TR/CSS21/generate.html#quotes-insert

It sounds like your local stylesheet, which should come after green.css in the cascade, should contain the following entries:


.entry blockquote {
    quotes: "&#8220;" "&#8221;" "&#8216;" "&#8217;";
}
.entry blockquote:before {
    content:open-quote;
}
.entry blockquote:after {
    content:no-close-quote;
}
.entry blockquote.last:after {    /* in this example, a para with a closing quote should be classed ".last" */
    content:close-quote;
}


This works on my PC. Hope this helps.