• I have a MailerLite form widget in the sidebar of my website for people to subscribe to my email newsletter. The form appears on a computer, but does not appear on mobile devices (including tablets). How do I get a sidebar widget to appear on a mobile device?

    I’ve tried looking at Jetpack settings, adding CSS code, etc. and nothing is working.

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    Please follow these steps,

    Go to your active theme directory & find style.css file

    – After that search the following CSS style (code line no 2335)

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

    and change the code to

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

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘MailerLite widget not appearing on mobile’ is closed to new replies.