Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #617056

    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

    #618934

    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

    #619544

    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

    • This reply was modified 7 years, 11 months ago by ShortieD.
    #619748

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.