I need help, I want to adjust the distance between the menu and the content on one page.
When you click on the menu it goes down to one position and a white part remains if the content has another color, I want to adjust that space
I attach an image
The default offset value for the menu is 150px from the top edge of the browser window. To change it, add the following custom code to your theme’s functions.php file:
add_filter('woodmart_one_page_menu_offset', function () {
return 65;
});
In this example, the offset value is set to 65px, which matches the height of your sticky header.