Hey,
There has always been 25px padding-top and bottom as the default but you can override this. Can you send a link so I can see what you have outputting?
Ben
Thread Starter
otso
(@otso)
Looks like I’ve been overwriting it already but overwriting stopped working after update. I had to use older version of Kadence Blocks to get the page working again.
This is the site but I can’t throw new version of the plugin there since it’s online https://oulutoitiimi.fi/si-terapia/
Hey,
You are adding this css:
.kt-row-column-wrap {
display: flex;
align-items: stretch;
padding: 0;
}
You just need to update it to this so it’s more specific and takes priority.
.wp-block-kadence-rowlayout .kt-row-column-wrap {
display: flex;
align-items: stretch;
padding: 0;
}