I’ve seen all the answer to similar questions but the code supplied does not place the widget to the right of the logo. How can I do that?
Hey!
Depends on your header type, can you post a link to your site?
Cheers!
Josue
What code are you using? try changing the hook to ava_main_header
.
Cheers!
Josue
Use this snippet:
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘header’ );
}
Got it. Let me try
Cool! Worked! Thanks
You are welcome, glad to help :)
Regards,
Josue
One additional thing happen though. I noticed none of the links work in the new header widget. Can you check?
Hi!
Add this to your CSS:
#header .widget {
z-index: 100;
}
Best regards,
Josue
Thanks!
You are welcome, glad to help :)
Regards,
Josue