How can I eliminate the space between footer and body in Ride theme?

Hello there,

I saw some Posts about this matter before, but couldn’t make it work on my own store.

I want to get rid of the space between my Footer and Body - how can I do that?

I use the Ride Theme and this is my URL: https://amazonas-products.shop/

Thank you in advance!

@mvxritz Go to Assets/ecom-63891c6dcb292424b40840a2.css and paste below css at bottom of file.

.ecom-core.ecom-0fz2kpslnbi
{
margin-top: -20px !important;
}

Thank you for your quick answer, unfortunately it didn’t change anything.

Hi @mvxritz ,

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Add this CSS at the bottom

Online Store ->Theme ->Edit code

Assets → ecom-63891c6dcb292424b40840a2.css

.ecom-core.ecom-b6jgc3uxh2m {
    margin-bottom: 0px !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

@mvxritz
put below css in theme.liquid before closing tag


Hello @mvxritz ,

It’s GemPages support team and glad to support you today.

I would like to give you the recommendation to support you so kindly follow the steps below:

  1. Go to Online Store > Theme > Edit code of your current theme

  1. Open your theme.liquid theme file

  2. Paste the below code before


For example,

If you require any further information, feel free to contact me.

Best regards,
GemPages Support Team

Hello @mvxritz

Add this CSS bottom of the ecom-base.css file.

.ecom-core.ecom-b6jgc3uxh2m {
margin-bottom: 0px !important;

}

Thank you a lot!