How can I increase the number of blog post columns to 5 instead of 3?

Hi @Ammzish

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
@media only screen and (min-width: 769px) {
.medium-up--one-third {
width: 20%!important;
clear: none!important;
float: right;
}
}