Hi @bethplummer!
The problem on your website is, that the “elementor-shape” transparent element is crawling over our slider and you can only click on the very top element in a website.
You could fix it with this CSS code:
.elementor-element-1c81b688{
overflow:hidden;
}
which would hide that overflowing part from the elementor element containing the shape.
If you don’t have a good place to put css codes, you could use a plugin like this one:
https://www.ads-software.com/plugins/simple-css/
which will create an option for you in the WP left admin menu’s Appearance -> Simple CSS.
But this CSS code would only help your situation in this one case, so I would suggest trying out this code instead, but you would need to do some testing:
.elementor-section-boxed{
overflow:hidden;
}
On your homepage this seem to work well, but you should check out your other pages too, to make sure you aren’t hiding parts you would like to see.