• Resolved formless

    (@formless)


    Thanks for your great plugin first.

    I wanna know how I can hide block title and make block backgrounds transparent in Gutenberg editor, since they does not seem Gutenberg-ish.

    Ps
    I am wandering btw yours and ACF Block which I should use…

Viewing 1 replies (of 1 total)
  • Plugin Author nK

    (@nko)

    Hi.

    You can try to use custom styles in your plugin/theme. Example:

    .lazyblock.wp-block-lazyblock-test {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }
    .lazyblock.wp-block-lazyblock-test > .lzb-content-title {
        display: none;
    }
    

    Regards, nK.

Viewing 1 replies (of 1 total)
  • The topic ‘I want to hide block title and cancel background white color’ is closed to new replies.