Remove " when using blockquote

Hi,
on my blog I use custom css to modify the style of the blockquote, but the quotation mark remains. How can I remove it?

Hi there

Hope you are having a good day and thank you for your question :slight_smile: In order to check your question i need to see your live website, please provide url of the page and i will take a look

Here: http://artedellalettura.it/2018/07/recensione-buonanotte-signor-lenin.html

As you can see on the book cover there’s a quotation mark

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the quote icon by going to Appearance > Customize > Additional CSS and pasting it there.


/*Remove quote block*/
blockquote:before {
    display: none;
}

Best Regards,
Support