• Hi there, is it possible to get a Homepage layout with a small image on the left and the Text on the right? Like this:

    https://www.businessinsider.de/

    The current posts take up a lot of space. Especially in the mobile view. I would like to reduce that.

    Thank you!

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter danielbeilfuss

    (@danielbeilfuss)

    The last article should remain as large as it is.

    Hello.

    Add this

    @media(min-width:767px){
    .home #content .entry-featured {

    max-width: 200px;
    margin: 0 20px 20px 0;
    float: left;
    }
    .home #content .entry-title {
    text-align: left;
    padding: 0;
    }
    }

    To additional CSS.

    Thread Starter danielbeilfuss

    (@danielbeilfuss)

    Thank you. In the mobile version unfortunately nothing has changed.

    And is it possible to leave the latest post large as it is and the older posts with a smaller image?

    The image should be on the left and all the content (headline, categorie, date and text) on the right.

    Hmm. I’m sorry but I don’t know. It works for me.

    Hi @danielbeilfuss
    Try this for mobile

    @media(max-width:767px){
    .home #content .entry-featured {
    
    max-width: 200px;
    margin: 0 20px 20px 0;
    float: left;
    }
    .home #content .entry-title {
    text-align: left;
    padding: 0;
    }
    }

    in your custom CSS box under Customize-▸Additional CSS

    Let me know if this worked for you.

    Thread Starter danielbeilfuss

    (@danielbeilfuss)

    Thank you. Also, is it possible to leave the last article as large as it is right now and only start with the new layout from the second article?

    Hi,
    try this

    
    @media(max-width:767px){
    .home #content .col-sm-6 .entry-featured {
    max-width: 200px;
    margin: 0 20px 20px 0;
    float: left;
    }
    .home #content .col-sm-6 .entry-title {
    text-align: left;
    padding: 0;
    }
    }
    

    This will apply in mobile though

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Homepage Post Layout’ is closed to new replies.