Hi team I’ve started building our site http://www.sasi-skin.com/site/.
I’d like to have the navigation over to the left next to the logo (rather than floated right) and then I’d like to have the phone number over to the right – perhaps register a new widget area and include this as text or a custom menu.
Here’s the screenshot of what I’m trying to do – can you advise as to the best way to do this? I’m using a child theme and pretty good at coding
http://www.awesomescreenshot.com/image/1177248/78982e81923206256fe224628e6c35be
Thanks
Hi ShortieD!
Thank you for using Enfold.
Use the “ava_inside_main_menu” hook. Example:
add_action( 'ava_inside_main_menu', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
$output = "ADDITIONAL CONTENT HERE";
echo $output;
}
Cheers!
Ismael
Hi – I added that to the functions – thanks
Howver I need to know how to move the navigation over to the left as per my original message above – otherwise this new text drops down undereath the navigatiaon
many thanks
Hi!
Please add the below CSS to Quick CSS
.responsive .container.av-logo-container {
max-width: 1250px;
}
.logo {
width: 220px !important;
}
.main_menu {
right: auto!important;
left: 250px!important;
}
Cheers!
Vinay