Hide Menu On Ipad Pro - Question | JoomShaper

Hide Menu On Ipad Pro

Igors

Igors

Helix Framework 3 years ago

Hi friends how to hide menu on ipad pro like this is on other tablets and mobile with ofcanvas toggler?

0
8 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #7676

Hello!

Sorry for the delayed response!

You may use the following media query in your custom css:

@media (max-width: 1025px)
{
body.ltr #offcanvas-toggler.offcanvas-toggler-right.d-block
{
    display: block!important;
}
.sp-megamenu-parent.menu-animation-fade-down.d-none.d-lg-block {
    display: none!important;
}
}

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

https://prnt.sc/pu705g

https://prnt.sc/pu70zn

Hope this will serve your purpose!

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #7534

Hi there!

May I have your site URL here, please?

Best Regards

0
Igors
Igors
Accepted Answer
3 years ago #7550

Domain is https://vervo.lv/lv/.

But template is old t3.

In this page i try to make new similar on helix https://vervo.lv/lv/valstis/kravu-parvadajumi-zviedrija

0
Igors
Igors
Accepted Answer
3 years ago #7661

That would be nice to get answear. I am stuck with this

0
Igors
Igors
Accepted Answer
3 years ago #7762

Thanks Rashida. One more question. I have custom header with 3 columns. Logo, menu and language switcher. Can i somehow do so that on mobile and tabled ofcanvas toogler is on the right side?

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #8054

Hi,

You can use the following code to change the order if you like it:

@media (max-width: 1025px){
    #sp-header .row {
    display: flex!important;
    flex-direction: row!important;
}
#sp-menu {
    order: 3;
}
}

Best Regards

0
Igors
Igors
Accepted Answer
3 years ago #8076

Thanks Rashida.

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #8499

You are always welcome:)

0