Hello,
I have a small widget to insert in the second header at the left position where now my social icons are. I can’t find the correct hook to add this widget to this position. I search a lot but I can’t find the correct answer.
Hope somebody knows the solution! :)
Hey GrafitecSon,
Did you try this out? https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
We can help you out with styling once it’s added.
Best regards,
Rikard
Hi.
Yes I do this! But when I use this function the widget get positioned below te main menu.
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
dynamic_sidebar( 'header' );
}
Link to screenshot: https://www.dropbox.com/s/xjb2igsib7d686d/Screenshot.png?dl=0
Hi,
Thanks for the screenshot, could you post a link to where we can see the actual element as well please? Otherwise it’s difficult to give you accurate CSS.
Best regards,
Rikard
I sent you a private login because the site is in coming soon modus
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
#header_meta {
z-index: 1;
}
#zeno_fr_widget-2 {
position: absolute;
top: -150px;
}
Best regards,
Rikard
Hi Rikard,
This solutions works great! Thanks for your help!