Archived topic
How do I remove the bar in a blockquote?
3 replies · Started by RJ on February 7, 2020
Viewing posts 1–4 of 4
Hey there,
The WP blockquote shows a left-hand bar next to the quote, like this:
https://www.screencast.com/t/CiGtEkT78
How do I remove it so it looks like this:
https://www.screencast.com/t/FPKpwJY8U
TIA, Robin
Hi there,
try this CSS:
.wp-block-quote {
border-left: 0;
}
Or this if you want to reduce the left hand padding as well:
.wp-block-quote {
border-left: 0;
padding-left: 10px;
}
Perfect! Thanks David.
Robin
You're welcome
This archived topic is closed to new replies.