HI,
I’m looking to create a full width div underneath the Enfold Header nav elements so that I can insert a search widget.
I was able to create a Widget in my header, but I’m wresting with placing it as I’d like. I can move the widget around using CSS, but can’t seem to create the spacing under the nav elements
The PNG Image attached shows you what I am trying to achieve.
I’ve also included a link to my dev site that shows the current layout
Any advice is much appreciated!
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_action('ava_after_main_container', function() {
dynamic_sidebar( 'custom widget area );
});
Change custom widget area for the name of the widget area you’ve created.
Cheers!
Josue