• I have another question, is there a way so that the bordered side bar widget shows up first on my mobile website?

    I would like for my subscribe button to show up first and then the rest of my posts. Currently, it shows all of my posts first and you have to scroll way to the bottom to subscribe to my website. Make sense?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @maxinedubois,

    If you’re using a child theme, you could modify it to shift the order of the columns around, otherwise your best bet may be to use a plugin to create a mobile friendly popup for your subscription form.

    Typically this isn’t a problem, but I can definitely understand with 100 posts on your home page how scrolling that much on mobile would be an issue.

    Let us know if you have any questions!

    Thread Starter maxinedubois

    (@maxinedubois)

    How do you modify it to shift around? I am not seeing it and I’ve seen this question been asked before.

    Not sure what I’m missing!

    Hi @maxinedubois,

    You would move the element with the “sidebar-column” class up above the element with the “main-column” class, then you’d probably want to add the following CSS to keep the sidebar on the right side of the page at higher resolutions:

    @media (min-width: 992px) {
      .blog-feed .sidebar.sidebar-column {
        float: right;
      }
    }

    Hope this helps, let us know if you have any trouble or additional questions.

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