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
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:
Go to Online Store → Theme → Edit code
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