Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Amit Paul

    (@paulamit)

    Hi @benington,

    Greetings. Hope you’re doing good.

    Well, You can use this CSS on your stylesheet if you want to see the sidebar on mobile device:

    @media screen and (max-width: 768px) {
    
    #betterdocs-sidebar {
        display: block !important;
    }
    .betterdocs-content-area {
        display: unset !important;
    }
    
    }

    NOTE: You can simply add custom CSS by navigating to your WordPress Dashboard -> Appearance -> Customize.
    After you are on the Customizer page, search for the “Additional CSS” option. You can then go ahead and insert CSS Code.

    Hope it helps. Thank you!

    Thread Starter benington

    (@benington)

    Thanks, that worked, but instead of

    .betterdocs-content-area {
    display: unset !important;
    }

    you need to set the display to inherit instead of unset, at least for my website. It worked also but visually breaking several things.

    Thanks a lot, hope this helps others too!

    Plugin Support Amit Paul

    (@paulamit)

    Hi @benington,

    Hope you’re doing good.

    Thanks for the feedback and your kind info. Hope it will be helpful for others as well.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show Sidebar on mobile’ is closed to new replies.