How can I modify the default 3 column layout in Startup theme?

Hi!

Does anybody know hoy to change the default 3 columns in Startup theme for Text column with images block? I have 4 elements to put ant it does not look ok with 3 on top and 1 down.

Thanks!

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.
  • Step 2: Go to Assets > theme.css and paste this at the bottom of the file:
    .home-inline-feature{
    width: 25% !important;
    }
    @media (max-width: 719px){
    .home-inline-feature{
    width: 50% !important;
    }
    }
    @media (max-width: 719px){
    .home-inline-feature{
    width: 100% !important;
    }
    }