-
AuthorPosts
-
March 14, 2024 at 1:56 pm #1437224
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!
March 14, 2024 at 5:51 pm #1437245Hey 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,
RikardMarch 15, 2024 at 9:21 am #1437275Where I have to insert the code?
March 15, 2024 at 4:18 pm #1437323March 18, 2024 at 8:55 am #1437440Thank you, I added it…where can I use the widget now? :)
March 18, 2024 at 10:43 am #1437445Hi,
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,
IsmaelMarch 19, 2024 at 1:59 pm #1437547Thank 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 overwhelmedMarch 19, 2024 at 5:14 pm #1437611 -
AuthorPosts
- You must be logged in to reply to this topic.
