ManuMateo Posted January 22, 2020 Share Posted January 22, 2020 Is there a way to customize with CSS mobile breakpoint? I mean, customizing the pixels where it switch to mobile view. Thanks for the help 🙂 Link to comment
tuanphan Posted January 23, 2020 Share Posted January 23, 2020 You can't do this with CSS. What do you want to achieve? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
ManuMateo Posted January 27, 2020 Author Share Posted January 27, 2020 With 7.1, there are 2 types of display: desktop and mobile. When the screen width become smaller, it changes from de sktop to mobile view. This change occurs when passing a certain width in pixels (mobile breakpoint). How can I adjust this limit width with CSS? Thanks a lot for the help! 🙂 Link to comment
hansiel Posted May 26, 2020 Share Posted May 26, 2020 @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } }  On 1/27/2020 at 4:42 PM, ManuMateo said: With 7.1, there are 2 types of display: desktop and mobile. When the screen width become smaller, it changes from de sktop to mobile view. This change occurs when passing a certain width in pixels (mobile breakpoint). How can I adjust this limit width with CSS? Thanks a lot for the help! 🙂  Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.