incorrect max width
-
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) {
- margin-left: auto;
- margin-right: auto;
- max-width: var(–stk-block-default-width, var(–stk-block-width-default-detected, 900px));
- 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) {
- margin-left: auto;
- margin-right: auto;
- max-width: 1290px;
- width: 100%;
}
}
The page I need help with: [log in to see the link]
- The topic ‘incorrect max width’ is closed to new replies.