I'm using Bricks, ACSS, advanced themer and learning A LOT every day. I'm a UX/UI designer, and have very basic knowledge on HTML/CSS.
I bought Motion Page due to it's no-code solutions. Now, the moment I turned on the ScrollSmoother I see that my Sticky Header (set to Sticky from the BRICKS settings - Template settings), is not working anymore. It just doesn't stick when turn on ScrollSmoother.
I've found on the forums here an update for the functions.php that I've applied as a code snippet to try if this fixed the issue:
add_action('bricks_after_header', function() {
echo '<div id="smooth-wrapper">';
echo '<div id="smooth-content">';
});
add_action('bricks_before_footer', function() {
echo '</div>';
echo '</div>';
});
But this does nothing per sé, I guess. I should do something on the Editor too to set the sticky header to be outside that smooth-content section? when I Inspect the site I see it's still within.
Help please! This situation is already in several posts here, but they are all 2-3 years old.. I'd be a bit surprised if this still needs a manual solution after 2 years?