New update - Alignment problem

Hi,
Since the last update, the alignment of my posts on my home page has been modified. It’s sometimes too much on the left, or on the right. I modified style.css like that:

.blog.home article.post/:nth-child(even)/ {
/* padding-left: 25px; */
padding-right: 0;
}

Now it seems ok, but can you confirm that this trick won’t destroy something else?
My website’s url is: dailycio.us
Thank you very much!

Hi @smouick,

I hope you are well today and thank you for your question.

Instead of changing CSS code in the theme file, you can resolve this issue by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS


.blog.home #page article {
    padding: 0 !important;
}

Best Regards,
Movin

Thank you very much Movin, it works!

You are most welcome here :slight_smile: