Hi, I’ve searched the forums but can not find the solution.
My page is here:
http://www.bodnikwebservices.com/drtinadorfman/
I would like widget housing the WPML language switcher to be top right (right of the logo)
I have added to my functions.php:
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘header’ );
}
Tried changing the ava_after… to ava_before, but didnt work :D
Thanks for your help.
Hey bodnikwebservices!
Thank you for using Enfold.
Please refer to this link for a possible fix: https://kriesi.at/support/topic/how-to-change-position-of-wpml-langs-on-the-right-of-my-secondary-menu/#post-436577
Or you can keep the header widget then add this in the Quick CSS field to adjust the location of the language selector:
#icl_lang_sel_widget-3 {
position: absolute;
top: -100px;
right: 0;
}
Cheers!
Ismael
Wow, that worked perfect. Went with the 2nd option.
Thanks so much.