You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have selected the layout with only a sidebar to the left (the third). It works fine with media width >= 1007 but at 1007 the sidebar goes to the right. And next, with media width < 768 it goes down the main section.
If I'm not wrong, this behavior is strange. If I have selected a layout with the sidebar to the left, it should always stay to the left until it goes down.
I guess it is caused by these lines in assets/css/style-default.css#L6768
I have selected the layout with only a sidebar to the left (the third). It works fine with media width >= 1007 but at 1007 the sidebar goes to the right. And next, with media width < 768 it goes down the main section.
If I'm not wrong, this behavior is strange. If I have selected a layout with the sidebar to the left, it should always stay to the left until it goes down.
I guess it is caused by these lines in assets/css/style-default.css#L6768
@media screen and (min-width: 1007px) {
.main-float-right main.main {
float: right;
}
}
that put main section to the right, but only if media width >= 1007.
Thanks.
The text was updated successfully, but these errors were encountered: