Hi,
Getting a widget below the menu works fine:
http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Is there a way to get a widget or easy slider above the menu?
Thanks for your help
Peter
Hi pegasso4444!
Please follow this guide to add a Widget in the header: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Best regards,
Rikard
Hi Rikard,
You probably did not read my text.
I made this already as I told with the link above.
But that has created a header area below the menu.
What I need is a widget area above the menu!
See the code of:
http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
echo dynamic_sidebar( ‘header’ );
}
How do I get it above the menu?
Thanks for your help
Peter
Hey!
Replace it with:
add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
echo dynamic_sidebar( 'header' );
}
Regards,
Ismael
Hi Ismael,
Thanks – that works perfect!
Have a nice day
Peter