How to increase WIDTH of Recipe Block

Hey

Is there any way at all to increase the wide around the entire recipe block so that it takes up more space? Or maybe decrease the padding around the block

1 Like

Hello @dkg876

You can increase the width of the Recipe Card Block by adding some custom CSS code to Appearance -> Customize -> Additional CSS

.wp-block-wpzoom-recipe-card-block-recipe-card {
	width: 100%;
	max-width: none;
}

After adding the code provided above, you will get the full width block container. If you want a fixed width, you need to replace the value 100% with some like 900px. At the moment the width of the recipe card block is 750px!

Hope this will help you to achieve the needed result.

1 Like