How can I arrange images and text side by side on a mobile homepage?

@FS1949

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.scss and paste this at the bottom of the file:
@media (max-width: 749px){
    .feature-row__item {
        width: 50%;
    }

    .feature-row {
        flex-direction: row !important;
    }

    .feature-row__item.feature-row__text.feature-row__text--left {
        padding-top: 0;
        padding-left: 20px;
    }
}
1 Like