Archived topic
Change color of blockquote bar?
5 replies · Started by James on November 25, 2017
Can you please tell me where to change the default colour of the bar that appears when I do a blockquote?
Thanks in advance,
Hi James,
CSS is required for now:
blockquote {
background-color: #000000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know.
That changed the entire background of the Blockquote, Leo. :) I just wanted to change the colour of the vertical bar at the far left of the indented text.
Ahh sorry. This should do:
blockquote {
border-left: 5px solid #000000;
}
Resolved! A million thanks, Leo!
No problem!