Site logo

Archived topic

GeneratePress styling for the standard WordPress Verse block: 2

3 replies · Started by Jim on January 26, 2020

Viewing posts 1–4 of 4

What CSS is required to:

1. Remove the shading from the Verse block.

2. Get the Verse block to preserve both line breaks and spacing within a line. Is it this?

/* Verse Block: add the proper spacings */
pre.wp-block-verse {
white-space: pre;
}

Per: https://css-tricks.com/almanac/properties/w/whitespace/

Thanks!

Hi there,

1. Try this:

pre.wp-block-verse {
    background: none;
}

2. Yup give that a shot.

Let me know :)

Works great! Thanks!

No problem :)

This archived topic is closed to new replies.