• Resolved jacekarwal

    (@jacekarwal)


    Problem is with css.

    I tried to debug this and I found out that when I change max width in specific css rule it works as expected.

    I don’ t want to add my custom css ti fix it, is this possible to fix it on your side ?

    Before change ( elements are overlayed ):

    @media only screen and (min-width: 768px) {

    frontend_bl…ver=3.7.2:1

    .stk-block .stk-block.aligncenter, .stk-block:is(.aligncenter,.alignwide,.alignfull)>.stk-content-align:not(.alignwide):not(.alignfull) {

    1. margin-left: auto;
    2. margin-right: auto;
    3. max-width: var(–stk-block-default-width, var(–stk-block-width-default-detected, 900px));
    4. width: 100%;

    }

    }

    After change ( elements are OK )

    @media only screen and (min-width: 768px) {

    frontend_bl…ver=3.7.2:1

    .stk-block .stk-block.aligncenter, .stk-block:is(.aligncenter,.alignwide,.alignfull)>.stk-content-align:not(.alignwide):not(.alignfull) {

    1. margin-left: auto;
    2. margin-right: auto;
    3. max-width: 1290px;
    4. width: 100%;

    }

    }

    • This topic was modified 7 months ago by jacekarwal.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘incorrect max width’ is closed to new replies.