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
You should change private static $_default_breakpoints from 'lg' => 1024 to 'lg' => 1025.
Now its 1024 and we have @media(max-width:1023px) for tablet, but we must have @media(max-width:1024px) for tablet.
If you change private static $_default_breakpoints from 'lg' => 1024 to 'lg' => 1025 — all new pages will be working right — @media(max-width:1024px) for tablet.
Old pages still be @media(max-width:1023px). We must go to Elementor Tools and Regenerate CSS.
The text was updated successfully, but these errors were encountered:
Elementor uses 1023px in @media(max-width:1023px) for tablet. But must be @media(max-width:1024px). Here: http://relfy.ru
It happens because private static $_default_breakpoints = ['lg' => 1024,]; (responsive.php ).
Tablet "md" max = lg-1 ($screen-md-max: map_get($breakpoints, lg) - 1;)
And we have: 1024-1=1023 px.
If you change private static $_default_breakpoints from 'lg' => 1024 to 'lg' => 1025 — all new pages will be working right — @media(max-width:1024px) for tablet (1025 px -1 = 1024 px). Old pages still be @media(max-width:1023px). We must go to Elementor Tools and Regenerate CSS.
Hello!
You should change private static $_default_breakpoints from 'lg' => 1024 to 'lg' => 1025.
Now its 1024 and we have @media(max-width:1023px) for tablet, but we must have @media(max-width:1024px) for tablet.
includes/responsive.php
If you change private static $_default_breakpoints from 'lg' => 1024 to 'lg' => 1025 — all new pages will be working right — @media(max-width:1024px) for tablet.
Old pages still be @media(max-width:1023px). We must go to Elementor Tools and Regenerate CSS.
The text was updated successfully, but these errors were encountered: