sacredpath
(@sacredpath)
Automattic Happiness Engineer
Hi, give this a try. Add it to the very bottom of your custom CSS.
@media screen and (min-width: 960px) {
.archive .site-main,
.blog .site-main,
.search .site-main {
margin-left: -10px;
margin-right: -10px;
}
.archive .site-main:before,
.archive .site-main:after,
.blog .site-main:before,
.blog .site-main:after,
.search .site-main:before,
.search .site-main:after {
content: "";
display: table;
}
.archive .site-main:after,
.blog .site-main:after,
.search .site-main:after {
clear: both;
}
.archive .hentry,
.blog .hentry,
.search .hentry {
margin: 0;
padding: 0 10px;
width: 50%;
}
.archive .hentry:nth-of-type(even),
.blog .hentry:nth-of-type(even),
.footer-widget-inner .widget:nth-of-type(even),
.search .hentry:nth-of-type(even),
.archive .hentry:nth-of-type(odd),
.blog .hentry:nth-of-type(odd),
.footer-widget-inner .widget:nth-of-type(odd),
.search .hentry:nth-of-type(odd) {
margin-right: 0;
margin-left: 0;
}
.content-area .hentry:nth-of-type(3n+1) {
clear: none;
}
.content-area .hentry:nth-of-type(odd) {
clear: left;
}
}