Site logo

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

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.