Hello!
I am using the Illdy theme. I am having a problem with the way that quotes and blockquotes are displayed in my posts.
When I am using the editor, the format of the quote looks great however when I view the post, the formatting is not the same. In particular there is a set of quotiation marks centred above the quote and another at the end of the quote.
I would like for the format to either look like it does in the editor or at least to remove these quotation marks.
You can see an example of this at: http://www.dietmatters.info/risk-reduction-of-cognitive-decline-and-dementia/
I appreciate your help.
PS I saw a similar post suggesting using some advanced CSS code however I wasn’t able to apply this successfully (probably due to a lack of understanding of CSS)
Good evening
Thank you for the question Kjtrapani
Yes, i see the block quote on your page and its display different but what exactly you wanted to change? font size? color? line-height? please check this recent ticket exactly about the same question:
https://colorlibsupport.com/t/change-text-size-and-appearance-in-paragraph-vs-quote-blocks/
Thank you for your response.
I would be happy just to remove the " which is shown before and after the quote. That would be enough.
It would be amazingly great if it displayed on the site like i see it in the editor (I have attached a screenshot of what it looks like when I edit the page!)
Thanks
Karen
Good morning
Ok, let’s try this code:
.markup-format blockquote:before, .markup-format blockquote:after {
content: “” !important;
width: 90%;
height: 2px;
background: #4c4c4c;
display: block;
margin: 30px auto;
}