I meant to mention that the same issue occurs with a tablet view as well.
Hello @collinvarney!
The problem you have is caused by your customization of the Elementor Page builder Elements. In two Elements (elementor-element-1d619d0 and elementor-element-1290cb0) you added margin-top and margin-bottom values of -600px (on screen widths less than 1024px). Also, on screen widths less than 767px. these elements have margins of -240px.
When I turn off these settings, your site is working normally.
https://pasteboard.co/J4ET7Wq.png
Regards
Thank you so much for that information about the Elementor elements. I’m new with a lot of this, so I could really use some clarification on how to save those changes you speak of.
I’m able to make those changes happen in Inspector (though mine doesn’t look the same as yours in the screenshot, which might be part of my confusion), but I don’t know how to save those changes once they’re made.
How do I do that?
Hello, @collinvarney!
There are two ways to solve this:
1.
Edit your HomePage with the “Elementor” page builder, then click on the element you want to change margins, open the “Advanced” tab, select the Tablet/Mobile mode and remove the margins.
https://pasteboard.co/J4GARer.png
or
2.
Insert the following code into Customizing->General->Additional CSS:
@media only screen and (max-width: 1024px){
.elementor-10 .elementor-element.elementor-element-1d619d0,
.elementor-10 .elementor-element.elementor-element-1290cb0{
margin-top:inherit!important;
margin-bottom:inherit!important;
}
}
Regards