Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi Slamer !

    Yes you can just go to your style.css file and add the following to the end

    .archive .entry-title, .blog .entry-title, .search .entry-title {
        margin-top:30px;
    }

    That code is for the space between the image and title.You can change the “30px” value to a value that looks perfect to you

    Now the space between the posts:

    .archive article, .blog article, .search article {
         margin-right: 10px;
    }

    Note that this will affect the number of posts appearing per line.

    J’espère que ?a a résolu vos problèmes ?? ??

    Thread Starter Slamer51

    (@slamer51)

    Bonjour.

    Merci Beaucoup.

    The code seems working but it’s affecting the number of posts per line. Is there a way to keep those 3 posts per line even though i increase the space ?

    I got another question : How to change the police of Titles ?

    Regards,

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Don’t use this selector: ‘ .search article’

    Thread Starter Slamer51

    (@slamer51)

    I tried it but It has no effect on the number of posts per line.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Did you modify the theme’s stylesheet? I can’t tell whether it’s an issue with your theme, or an issue from a change.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    See how you’re still targeting the article: https://snag.gy/zL0wx.jpg

    Thread Starter Slamer51

    (@slamer51)

    I m working on the Custom.CSS.
    The stylsheet.css does not accept new data.

    Thread Starter Slamer51

    (@slamer51)

    It’s still nor working. How to keep the 3 post per line even though i change the space between posts.

    i guess there is a way to increase the width ?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Don’t target the article, don’t use the above CSS:

    .archive article, .blog article, .search article {
         margin-right: 10px;
    }

    That will target the article. The article has 33.3333…% width, which equals to 100% width. If you give the article a margin-right of anything, that will result in a width greater than 33.33% and the articles will not fit. Just as 101% does not fit in 100%.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Or accept that adding a margin-right will mean that you will have to reduce the width. It must always add up to 100%. So, add a margin-right of 1% and reduce the width down to 33%.

    Thread Starter Slamer51

    (@slamer51)

    THanks.
    I might change the template.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Space between posts, space between images and Titles.’ is closed to new replies.