Hey, sorry for the misunderstanding, I don’t know what Mohammad was referring to.
You cannot set just a variable for this, you need to modify the theme files.
So in responsive.css you find this code
/* --------------------------------------------
iPAD/TABLET PORTRAIT
-------------------------------------------- */
and afterwards you’ll find the code that kicks in in ipad portrait mode, so
#main-navigation {
display: none;
}
.header-1 #main-nav, .header-1 #main-nav-sticky-wrapper, .header-1 .header-left, .header-1 .header-right, .header-2 #main-nav, .header-2 #main-nav-sticky-wrapper {
display: none;
}
for example hides the navigation and the sticky wrapper on mobile. So if you want to change that you need to copy the code (including the @ media query) and modify the values of the media query
@media only screen and (max-width: 991px) {
according to your liking.
Then you need to copy all the other css that is affected by the responsive css for that section.
If you’re unsure how to do that please hire a developer of your trust to help you with that.
Cheers