Ok, I was able to figure this one out myself haha. Leaving this for other people who are having the same troubles we were. Insert this code in the styles.css.liquid file:
float: none;
width: auto;
text-align: center;
insert it after:
/* Blog / articles */
.article-list .article {
padding-top: 50px;
padding-bottom: 50px;
Finished product will be:
/* Blog / articles */
.article-list .article {
padding-top: 50px;
padding-bottom: 50px;
float: none;
width: auto;
text-align: center;
border-top: 1px solid {{ settings.col_dividers }};
}
Thanks shopify! Feels great to solve an html coding issue without previous experience!