Hello @trideit ,
By default, your theme seems to be adding an white space at the top of some pages. For example, take a look at this page:
https://trideit.com/shop/
There will be a message “No products were found matching your selection.” with a lot of white space at the top. This is due to this CSS created by your own theme or some other plugin:
body:not(.et-tb) #main-content .container, body:not(.et-tb-has-header) #main-content .container {
padding-top: 58px;
}
You can fix it by adding this to your Customizer > additional CSS:
#main-content .container{ padding-top:0 !important }
However I don’t know if it could mess with some other pages. You could give it a try though.
Besides that, it seems your theme is not handling the notices from WooCommerce appropriately as well. You could try this to fix it:
.woocommerce-notices-wrapper > * {
z-index:99;
margin-bottom: 57px;
}
Let me know if it helps ??