• I am using the Creativix theme and my site can be viewed here. Please take a look at the frontpage and you will see large spacing in between some of the articles. This happens when I add a new posting but not all the time. How can i fix this please?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You need to add a clear: left style to each post item that starts a new row, otherwise you’ll see some items pushed aside due to un-even item heights.

    Thread Starter havingfun

    (@havingfun)

    Andrew…sorry to ask this but where exactly do I place the “style?” I placed the style within the end of each article’s code but it did not do anything. Although I wish I was, I am not familiar with coding. Where do I place the style?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It’ll be in the CSS, do you have a Custom CSS plugin or Child Theme?
    The CSS you’ll need to add is;

    .feat-post:nth-child(2n+1) {
     clear: left;
    }

    Here’s an explanation on nth-child
    http://css-tricks.com/useful-nth-child-recipies/

    Thread Starter havingfun

    (@havingfun)

    Andrew…thank you Andrew for your guidance for us rookies!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘large blank spaces are appearing in between articles??’ is closed to new replies.