Hey,
I wanted to customize the blockquote on my site, but I can’t do how I want.
But I want this style of blockquote
The ex. is from this page: https://www.stiridinlume.ro/politica/meghan-markle-la-prezidentiale-sua-2024-nu-sunt-un-fan-al-ei-mesajul-uimitor-al-lui-donald-trump-27378.html
Can you help me what code code I paste to Custom CSS?
Thanks.
Hello,
After you added the blockquote in the Gutenberg editor => https://www.screencast.com/t/JN5bB4shO you can edit the style for it in Single Post Template in the tab called “Style” where you can set the font size, font family etc for blockquote => https://www.screencast.com/t/URw1YmNm8 -> https://www.screencast.com/t/1TiXCurtkuD
Hope this helps you!
Thank you!
Hello,
Thanks for the answer. I use the classic editor, but I saw this option, but how ca I add this element to the blockquote: https://prnt.sc/10pr431
Thanks.
Hello,
This can be achieved only with custom code, for example like this => https://www.screencast.com/t/sELJi957Xko
This is the code
blockquote:before {
color:red;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p {
display: inline;
}
If you like it, you can add the code in Theme Panel -> Custom Code -> Custom CSS.
Thank you!