[Resolved] Homepage content

Home Forums Support [Resolved] Homepage content

Home Forums Support Homepage content

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1016362
    Javier

    I am creating a new site Finanlab and I would like the homepage to have a margin between the space of the articles (there is no need for space between the images). I would also like to know if it is possible that this text came out cleaner, is it possible to justify it? Do you propose another visually more appropriate and friendly option?

    https://ibb.co/dkTfyk0

    Thanks!!!

    #1016415
    David
    Staff
    Customer Support

    Hi there,

    just to be clear, you want to add some space between the text of the posts but not the images?

    #1016453
    Javier

    Right

    And if the home text can be better justified

    Thanks!

    #1016530
    David
    Staff
    Customer Support

    Try adding this CSS:

    .generate-columns-container .inside-article>*:not(.post-image) {
        text-align: justify;
    }
    
    @media (min-width: 769px) {
        .generate-columns-container .inside-article>*:not(.post-image) {
            padding-right: 40px;
        }
    }
    #1016563
    Javier

    It looks much better thanks.

    Is it possible that the title is not justified?

    Is it possible to separate the images and have the same margin as the text?

    Thanks!

    #1016569
    David
    Staff
    Customer Support

    Then you only need this CSS:

    .entry-summary {
        text-align: justify;
    }

    You can remove the other CSS and adjust the Customizer > Layout > Container > Separating Space

    #1016620
    Javier

    thank you great

    Is it possible to reduce the margin seen between the categories and the H1?

    https://ibb.co/jHYsGhq

    #1016625
    David
    Staff
    Customer Support

    Try this CSS:

    .archive.separate-containers .page-header {
        margin-bottom: 20px;
    }
    #1016664
    Javier

    perfect

    Is it possible to also reduce the spacing between the menu and the H1?

    https://ibb.co/rcTxq8H

    #1016668
    David
    Staff
    Customer Support

    This CSS:

    .archive.separate-containers .site-main {
        margin-top: 20px;
    }

    FYI: these last two spacing changes is overriding what you set as your Separating Space.

    #1016781
    Javier

    Perfect!

    Thanks

    #1016784
    David
    Staff
    Customer Support

    Glad to be of help

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