• Hi There!

    First of all I just wanted to say, I’ve had my Hueman theme for the past year and it has been a dream come true. You really made a beautiful theme and all your support in my beginning stages was SO incredibly helpful. Thank you.

    Quick Question:
    Is there a way I can customize the mobile display of the homepage on tablet so that articles display in one column and not two?

    Like to my site is here (bitly’d so this post doesn’t come up in google):
    https://bit.ly/1zHiZDB

    Please let me know. Thank you so much!
    b

Viewing 1 replies (of 1 total)
  • Hi wigglefish23. The default theme configuration sets the posts to a single column on all pages when the viewport width reaches 719px. If you want to make that happen sooner (i.e., a wider screen) and only on the home page, you could add this to your custom css:

    @media only screen and (max-width: 959px) {
      .home .post-list .post {
        width: 100%;
       }
    }

    This will set the posts to a single column at the same point that the sidebar collapses. You can adjust the max-width to whatever suits your requirements.

Viewing 1 replies (of 1 total)
  • The topic ‘1 Column display on tablet (Landscape & Portrait)’ is closed to new replies.