- This topic has 5 replies, 5 voices, and was last updated 9 years ago by
Tom.
-
AuthorPosts
-
March 19, 2017 at 10:33 am #294339
John Retzer
I had this idea to publish some quotations on my blog as standalone posts. But the “quotes” format doesn’t seem to do anything different from regular posts. Am I missing something? I was expecting some sort of fancy formatting.
March 19, 2017 at 11:02 am #294362Leo
StaffCustomer SupportHi John,
Not quite sure what you meant? Are you using the quote feature in the editor?
Any specific effect you are trying to achieve? A link to show what you have so far or an example of what you are looking for might help 🙂
Let me know.
March 19, 2017 at 6:32 pm #294475Tom
Lead DeveloperLead DeveloperThe quote format allows you to post HTML in the excerpt, so you can use the blockquotes built into the theme.
While in the “Visual Editor” highlight your quote and click the quotation mark button in the editor 🙂
March 19, 2017 at 8:05 pm #294491S-Config
I’m not sure if I’m reading this right. Perhaps John meant that the quotation style does not stand out from the rest of the text in the blog? I had this problem early on in GeneratePress. Theme > customize > typography does not have an option to change the size/style of block quotations.
I have to inject some CSS to make it pop a little more.
You can either do this in the style.css of your child theme or the usage of the Simple CSS plugin. Either way. I shall post my code. Now mine is a bit extreme with custom font sizes and type so you may wish to adjust accordingly to your site.
/* Quotations */ blockquote { font-family: Georgia, serif; font-size: 28px; font-style: italic; margin: 0.25em 0; padding: 0.25em 40px; line-height: 1.45; position: relative; } blockquote:before { display: block; content: "\201C"; font-size: 80px; position: absolute; left: -10px; top: -10px; } blockquote cite { font-size: 28px; display: block; margin-top: 5px; } blockquote cite:before { content: "\2014 \2009"; }Anyhow, hope that is what you were looking for.
– S
March 19, 2017 at 9:03 pm #294520Lyle
This is how am reading what John is asking about … I am asking as well as it doesn’t seem to make any difference 🙂

Cheers!
LyleMarch 20, 2017 at 10:01 am #294820Tom
Lead DeveloperLead DeveloperBy default it doesn’t make any difference, it simply allows you to wrap a blockquote around your text which will show in the excerpts (by default excerpts don’t show HTML like blockquotes).
-
AuthorPosts
- You must be logged in to reply to this topic.