• Resolved Vipa

    (@vipa)


    Hey,

    I got a problem with row layout set to full width.
    As soon as the content is high enough to creata a vertical scroll bar, there is a horizontal scroll bar as well. Which I do not want.

    I suspect it is because of this:
    <div class="wp-block-kadence-rowlayout alignfull">

    .no-sidebar .entry-content .alignfull {   
        max-width: 100vw;
        width: auto;
    }

    max-width: 100vw; if I understand correctly this sets the max-width to the width of the viewport and does not take the width of the scrollbar into account.

    For now I just suppress horizontal scrollbars with

    html {
        overflow-x: hidden;
    }

    but it would be nice if I don’t have to use this

    Thanks!

    • This topic was modified 5 years, 6 months ago by Vipa.
    • This topic was modified 5 years, 6 months ago by Vipa.
    • This topic was modified 5 years, 6 months ago by Vipa.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey,
    Themes determine how the alignfull class is treated. In fact, themes have to add code that shows they support alignfull for the alignfull option to show in Gutenberg.

    That alignfull css is not from this plugin.

    I suggest contacting your theme author.

    Ben

    Thread Starter Vipa

    (@vipa)

    Hey,

    thanks for the response, I will contact the theme author.

    EDIT: just tested it and you are right, it’s a theme problem.

    • This reply was modified 5 years, 6 months ago by Vipa.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Row Layout – full with – scroll bars’ is closed to new replies.