Hi there,
Please note that mobile devices can even surpass desktop or laptop resolutions now. Hence, it’s more tricky since iPad is in the same range of a laptop. Adding a keyboard and it will become a laptop, and laptop with removable keyboard can become a tablet.
If you wish to display it across in the laptop, keep in mind that it will have the same effect on tablet. And making it collapse on tablet will make it collapse on laptop too.
My final question, which do you prefer? Display mobile items on tablet and laptop? Or display desktop items on tablet and laptop?
I also checked and I don’t see it added to your class input. Please add my-custom-1 to inline menu’s class, then my-custom-2 to mobile menu’s class. And please change that CSS to this,
@media(max-width: 1100px) and (min-width: 980px) {
#my-custom-1,
.my-custom-1 {
display: block !important;
}
#my-custom-2,
.my-custom-2 {
display: none !important;
}
}
Just to make sure lower break points aren’t affected.
Thanks!