• Resolved LifeLibertyVA

    (@lifelibertyva)


    Should I be able to see sidebar contents at the bottom of the page in mobile view? I’m using the free version of the theme with a sidebar plugin, but it doesn’t seem to be a plugin conflict. Is this just the way the theme was built? And if it was, is it possible for me to add code to make this possible? Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    If you want to hide sidebar in mobile, then share the link to your site.

    Thanks!

    Thread Starter LifeLibertyVA

    (@lifelibertyva)

    I’m sorry for not being clear; I don’t want to hide the sidebar, I want to show it. Typically in mobile view, whatever’s in the sidebar drops down below the main content, but in Minamaze it doesn’t. Example: https://www.compasscarecommunity.com/vision-tours/

    Hi there,

    You can try adding the following code to your Admin Panel > Appearance > Customize > Additional CSS field:

    @media screen and (max-width: 685px) {
      #sidebar {
      display: block !important;
    }
    }

    Thanks!

    Thread Starter LifeLibertyVA

    (@lifelibertyva)

    Thank you for this! I also added a line to change the width from 25% to 100%. ??

    @media screen and (max-width: 685px) {
    #sidebar {
    display: block !important;
    width: 100%;
    }
    }

    All the best!

    Additionally, I’d prefer

    .layout-sidebar-right #sidebar-core {
    margin-left: 0px !important;
    }

    between the two closing brackets.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘No Sidebar in Mobile View?’ is closed to new replies.