Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #934878

    Hi i try to achieve the following: I want to have a split Menu the Logo in the middle of my menu items. I searched the forum but did not find any good workput. Can you help? Please see the screenshot : https://prnt.sc/iy1mgj

    Best Regards

    Rene

    #935202

    Hey dezomat2,

    Thank you for contacting us, please follow the easy steps provided in this link to create a logo center split menu.

    Let us know if you have any questions, we are happy to help you :)

    Best regards,
    Vinay

    #935220

    Hi Vinay,
    thank you for your help. im close to it now :) but my logo is now to small ;( can you advise what i need to do? Pw to see the page is in the private content.

    http://mp.cpanel10.xodox.de/

    • This reply was modified 6 years, 6 months ago by dezomat2.
    #935238

    Hi dezomat2,

    Try this code instead

    
    @media only screen and (min-width: 780px) {
    /*In the below code nth-child(x) the value of x should be half the number of total menu items*/
    #top #header .av-main-nav li:nth-child(2) {
    	/* Adjust the width of the logo */
        margin-right:300px;
    }
    
    #header .main_menu {
        /*background: gold;*/
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .av-main-nav-wrap {
        left: 50%;
        transform: translateX(-50%);
    }
    
    #header .logo {
        left: 50%;
        transform: translateX(-70%);
    }
    
    #header .logo img {    
        top: 50%;
        transform: translateY(-50%);
        max-width: 200px;  
    }
    }
    

    Best regards,
    Victoria

    #935244

    Hi Victoria,
    Hi Vinay,

    thank you very much. worked like a charm! One small thing – if i check my site in Ipad Portrait it does not show the burger menu. i searched the forum and the menu vbut could not find where i can add the 990px break point. Also i want to disable the magnify glass on smartphone view is this possible too ???

    Thank you very much

    Dezi

    #935348

    Hi,

    please make sure that you chose to display the mobile menu on Smartphones and tablets. You can check it in Enfold theme options > Main Menu > Menu Items for mobile.

    To HIde the search icon and activate the burger menu just before the menu starts to run into the logo by adjusting the max-width value in the below code:

    /* Activate burger menu */
    @media only screen and (max-width: 990px) {
    
    /* HIde the search icon */
    #top #menu-item-search {
    display: none !important; }
    
    #top #header .av-main-nav > li.menu-item  {
    display: none!important;
    }
    #top #header .av-burger-menu-main {
    cursor: pointer;
    display: block!important;
    }}

    Best regards,
    Vinay

    #935461

    Thank you
    works perfect.

    #935521

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Split Menu – Logo in the Middle of the Menu is this possible and if yes how?’ is closed to new replies.