• Resolved aditya243

    (@aditya243)


    I wanted to know how can I create this type of home page using Generate press free theme : markettrading.in

    I want this tiles kind of thing for all my posts and like the three posts in a same horizontal line. Can this be made really like this in Generate press free version as the earlier has been made in astra theme in their free version.

Viewing 3 replies - 1 through 3 (of 3 total)
  • ying

    (@yingscarlett)

    Hi there,

    It will require GP Premium, otherwise it requires custom CSS.

    Try this:

    :is(.blog,.archive) main#main {display: flex;flex-wrap: wrap;column-gap: 3.5%;}

    :is(.blog,.archive) main#main >.post {
    flex: 0 0 31%;
    }

    @media(max-width:1024px) {
    :is(.blog,.archive) main#main {column-gap: 4%;}

    :is(.blog,.archive) main#main >.post {
    flex: 0 0 48%;
    }
    }

    @media(max-width:768px) {
    :is(.blog,.archive) main#main >.post {
    flex: 0 0 100%;
    }
    }
    Thread Starter aditya243

    (@aditya243)

    Thanks, Ying

    ying

    (@yingscarlett)

    No Problem ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.