Site logo

Archived topic

Homepage content

11 replies · Started by Javier on September 23, 2019

Viewing posts 1–12 of 12

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!!!

Hi there,

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

Right

And if the home text can be better justified

Thanks!

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;
    }
}

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!

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

thank you great

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

https://ibb.co/jHYsGhq

Try this CSS:

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

perfect

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

https://ibb.co/rcTxq8H

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.

Perfect!

Thanks

Glad to be of help

This archived topic is closed to new replies.