Hi,
I just love your themes. I’m working on a new site and I would like to center the main nav menu and then move the search box to the right of the logo.
The site is located at http://jrkasman.com.
Thanks so much!
Gabe
Hey connect4consulting!
Please go to Enfold theme options > Header Layout and choose to display “Logo center, menu below”.
P.S.: You are not using the latest version of the theme. If you would like to use newly added features and make the theme fully compatible with the WordPress version you are using, please update the theme via FTP – http://vimeo.com/67209750
Regards,
Yigit
Hi Gabe!
Please go to Enfold theme options > Header Layout and choose to display “Logo left, menu below” and then let us know so we can provide you custom CSS code to center the menu.
It is not easily possible to move search icon next to your logo, but with modifying helper-main-menu.php file in Enfold/includes folder, it is possible to add a search box.
Best regards,
Yigit
Hi!
1- Please go to Enfold theme options > Header Layout > Extra Elements and uncheck “Append search icon to main menu”
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab
ul#avia-menu { width: 41%; margin: auto; }
@media only screen and (max-width: 1340px) {
ul#avia-menu { width: 48%; }}
@media only screen and (max-width: 1140px) {
ul#avia-menu { width: 54%; }}
3- Please go to Enfold/Includes folder and helper-main-menu.php file and find
if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;
and add following code right below it
get_search_form();
and adjust its position using following code in Quick CSS field
#header form#searchform { top: 10%; left: 40%; position: relative; }
Best regards,
Yigit
Fabulous!