Adjust Margins on Header and Text

I would like to adjust my heading and text box on my front page to remove the left and right margin space. It’s currently too narrow. I am using the Ride template.

Website: www.thebuckeyebros.com

Hello @DaFonz01 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code below:

@media screen and (max-width: 767px) {
.image-with-text__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
}

Thanks

1 Like