Changing block quote size in gutenberg

Hello I have tried to change the size of the blockquote in Gutenberg editor by switching to HTML and changing the text font. But it doesn't work. I still have gigantic size block quotes that take up too much space. See screenshots. Can somebody help?

thanks a lot

Topic block-editor Wordpress

Category Web


This is controlled by your theme's css and currently this is not customizable directly within the side editing panel within Gutenberg but can be updated by updating your theme's CSS (typically named style.css) .

The exact css selectors may slightly change for each theme but the following may work for many themes.

.entry-content .wp-block-quote p {
  font-size: 3px;
  font-style: normal;
  line-height: 1.8;
}

Note that if you place inside your theme's CSS file and update your theme, the change will be lost. so you can either make a child theme or save this somewhere else and then if your theme is updated, copy this back in.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.