Good evening Emanuele and welcome back!
Thank you for reaching out to us.
I would love to help you with this topic.
Something in your theme seems to be hardcoding a value for the widget-area height.
If you take a look at the HTML of the page you see
div class="widget-area clearfix lines-boxed q2w3-fixed-widget-container" style="min-height: 7395px; height: 7395px;"
This value is being added dynamically by your theme.
This leaves you with a couple of options:
- Create an exact copy of that page template and remove the code responsible for the size of the widget area
- Try to counter with some CSS
Something along the lines of
.aside_right .widget-area {
max-height: 3346px !important;
}
But I would highly recommend the first option.
Let me know if you need help doing that.
Best regards,
Geoff B.