• .kt-row-column-wrap added 25px padding after update. And it seems like I can’t overwrite it with !important. Why is that? I need it to stay globally 0 padding.

    • This topic was modified 6 years, 6 months ago by otso.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Ben Ritner – Kadence WP

    (@britner)

    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/

    Plugin Contributor Ben Ritner – Kadence WP

    (@britner)

    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;
    }
    Thread Starter otso

    (@otso)

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘New inline css?’ is closed to new replies.