How can I reduce homepage margins in the Ride Theme?

Hi There,

I would like to decrease the margins on the homepage (and all pages) in the Ride Theme. Even though I have placed my Heading to the left, it still looks like it is in the middle.

I would only like a small space left.

Website: we-zero.com

Thank you!

Elisa

Hi, @Elisa_witt

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> base.css ->paste the below code at the bottom of the file.
main .page-width {
    margin: 0 0;
}

Hi @Elisa_witt !

I`m Richard Nguyen from PageFly - Advanced Page Builder. I would love to give you some recommendation.

Please paste this code at the bottom of section-rich-text.css under assets in theme code files

.rich-text__blocks {
max-width: none !important;
}

And please paste this code at the bottom of base.css under assets in theme code files

.page-width {
max-width: none !important;
margin: 0 0 !important;
}

Best Regards;

Richard-Pagefly

This worked perfectly! Thank you very much.