Hi I need to change the breakpoint of when the header turns to mobile instead of desktop.
For example everything under 1400px should be the mobile header instead of the desktop.
I’m using the Prestige theme.
Any help would be appreciated.
Thanks
Hi I need to change the breakpoint of when the header turns to mobile instead of desktop.
For example everything under 1400px should be the mobile header instead of the desktop.
I’m using the Prestige theme.
Any help would be appreciated.
Thanks
You’ll need to adjust the CSS media query in your theme’s styles. Try this:
@media screen and (max-width: 990px) {
/* Mobile header styles */
}
@media screen and (max-width: 1400px) {
/* Apply mobile header styles */
}