How can I create an Info Bar above the Slider but underneath the Menü?
Like this on -> https://courage-lounge.de
but on our Website -> https://www.lucasct.de
Thank you!
Hey Anna_Tewes,
You could try adding it using a widget: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Or use the ava_after_main_container hook:
function my_function_after_main_container() {
echo '<div>Content</div>';
}
add_action('ava_after_main_container', 'my_function_after_main_container');
Best regards,
Rikard
Where I have to insert the code?
Thank you, I added it…where can I use the widget now? :)
Hi,
Thank you for the update.
Did you create a widget area named Header in the Appearance > Widgets panel? If not, please create one, add the widgets you’d like to display in the header, and then replace the modification in the functions.php file with the following code:
function ava_function_after_main_container() {
dynamic_sidebar('Header');
}
add_action('ava_after_main_container', 'ava_function_after_main_container');
For more info, please review the instructions in the following documentation: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
Ismael
Thank you!
Now it looks like this: https://ibb.co/4ZGp3cF
I need this one in red, text in the middle und it should be smaller. It depends on Css?
I’m a little bit overwhelmed