• Hi – I’m relatively new to WordPress development. I’ve installed and configured the Hemingway theme. When I view the site on mobile (mytakeonlife.org), the sidebar (which appears on the desktop version) is completely gone. It doesn’t appear on the bottom like usual themes. Can someone please help? Thanks.

Viewing 1 replies (of 1 total)
  • Hi rkverma2006,

    This is totally normal. It’s because the sidebar gets hidden as soon as you hit the breakpoint of max-width:800px.

    You can easily change that by either going to the themes style.css file to line 1967 and change this
    .sidebar { display: none; }
    into
    .sidebar { display: block; }

    or you create a child-theme and add just add .sidebar { display: block; } to the media query like this:

    @media (max-width:800px) {
        .sidebar { display: block; }
    }

    this way your sidebar will not get hidden in the mobile view. And I would recommend that you create a child-theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar Gone from Hemingway Theme on Mobile’ is closed to new replies.