Hi!
I would like to know how I can change the position of the different pages in the header menu.
First, I would like to have the page of my website on the left, but one page (Connexion/Inscription) on the right.
And I would like to move the social icons on the right too, after the page “Connexion/Inscription”.
And for finish, I would like to know how i can change the organisation of my pages..!
Thank you very much for your help!
Hi!
Thank you for using the theme!
First of all, you’re using an old version of the theme, 2.6.2. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
You can re-arrange the menu items on Appearance > Menu panel. First, create a menu then set this menu as Enfold Main Menu on theme locations. Add this on functions.php if you want to redirect the logo to another page:
add_filter('avf_logo_link', 'avf_redirect_logo_link');
function avf_redirect_logo_link($link) {
$link = 'http://www.yourdomain.com';
return $link;
}
Change http://www.yourdomain.com value to something else.
Regards,
Ismael
Hey!
Please go to Enfold theme options > Extra Elements and choose to display Header Secondary Menu.
Then add following code to Quick CSS in Enfold theme options under General Styling tab
.html_header_top.html_main_nav_header #top .av_menu_left .main_menu { width: 90%; }
#header_main nav .social_bookmarks { float: right; }
Cheers!
Yigit
Perfect, thanks a lot! Still helpful!