Mobile menu open by default

Discussion in 'Harrington- A WordPress Business Theme.' started by marketingtypeguys, Mar 9, 2016.

Thread Status:
Not open for further replies.
  1. marketingtypeguys

    marketingtypeguys Member

    Joined:
    Apr 15, 2014
    Messages:
    79
    Likes Received:
    1
    Hello -

    Is there a way to have the mobile menu be open (sub pages visible) by default?

    Thanks,

    Patty
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    @media only screen and (max-width: 767px){
    .mean-container .mean-nav ul {
        display: block !important;
    }
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. marketingtypeguys

    marketingtypeguys Member

    Joined:
    Apr 15, 2014
    Messages:
    79
    Likes Received:
    1
    Thank you, but I didn't state my request correctly.

    I meant to ask that when the mobile menu is opened, the sub pages are visible without having to touch the + sign next to the main navigation item. So mobile menu would still be accessed the same way, not opened already when the site is called up on a mobile device. Apologies for not being more clear about that!

    Patty
     
  4. priya

    priya Guest

    Hello,

    Try below code and check after that...
    Code:
    nav.mean-nav ul li ul {
        display: block !important;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        display: none;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,
    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  5. marketingtypeguys

    marketingtypeguys Member

    Joined:
    Apr 15, 2014
    Messages:
    79
    Likes Received:
    1
Thread Status:
Not open for further replies.

Share This Page