Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #834528

    Ahoy,

    I’m trying to make my menu like the attached screenshot.

    Please Advise how to setup,

    #834961

    Hey mcraig77,

    Did you try to set the menu items to Button Style under Appearance->Menus?

    Best regards,
    Rikard

    #835109

    Hi Rikaed,

    Not only do I need those to button menu items but I also need the menu (non button area) centered and logo more left like the screenshot. What is the best way about going about this?

    #835147

    Hi,

    The best way would be to use a child theme create a separate menu for the buttons and tweak with css however this would take a lot of time to do, I would suggest to use a single menu set the last 2 menu items to buttons then add a left margin to the signup menu (button).

    Best regards,
    Nikko

    #835178

    Ok… How would I do this once the child theme is created…

    First off how do I center the menu? next how would I add those buttons to the right area?

    Please advise,

    #835413

    Hi,

    Maybe you could add the additional content you need to a header widget? http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Best regards,
    Rikard

    #835595

    I went ahead and followed those instructions and things don’t really work . The buttons are not side by side and are not in the header…. I also need the first button to be a light transparent with this color box #787878

    Please Advise:

    Here is the widget code I added

    [av_button label='Sign Up' link='manually,http://www.test.com' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='light' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg=''] [av_button label='Login' link='manually,http://www.test.com' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='custom' custom_bg='#d5202d' custom_font='#ffffff' admin_preview_bg='']

    Here is the quick css
    #header .widget {
    left: 50%;
    padding-top: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    z-index: 999;
    }

    #835630

    Hi,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #header .main_menu {
        right: 50%;
        margin-right: -250px;
    }
    
    #header .widget {
        width: 185px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
    }

    Hope this helps.

    Best regards,
    Nikko

    #835633

    A couple of things:

    There does not seem any space between the buttons, how do I fix this? Screenshot 1 Also how do I canter the menu between the logo (left) and buttons (right) Screenshot 2. When I shrink the menu the buttons and menu overlap the logo. How do I make it do the mobile menu kicks in sooner? and how do I add these items the mobile menu but not show up in the desktop menu.

    Sorry for all the questions, this should be it if answered in full

    #837748

    Hi,

    Please replace this code I gave:

    #header .widget {
        width: 185px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
    }

    to:

    #header .widget {
        width: 200px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
        margin-left: 10px;
    }

    As for making the mobile menu appear sooner try adding this css code:

    @media only screen and max-width(1200px) {
      #avia-menu li.menu-item {
        display: none;
      }
    
      #avia-menu li.av-burger-menu-main {
        display: block;
      }
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #837999

    Thanks, That seems to fix the button gap but there are still a couple of issues Iicluding:

    1. No mobile menu comes up- Also I need to add those 2 buttons to mobile menu somehow without showing up on the desktop menu.
    2. The 2 buttons on the right overlap things I need them to disappear when the menu jumps to mobile.
    3. Things are still overlapping. They are not jumping to mobile sooner

    Please Advise.

    #838596

    Hi mcraig77,

    There is no room for those buttons on mobile, you need to come up with a different solution.
    Put them blew the logo or somewhere else. This code hides them for now.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 475px) {
      #text-6 {
        display: none;
      }
      .responsive .logo img {
        width: 80%;
      }
    }
    
    @media only screen and (max-width: 767px) {
      #header .main_menu {
        right: 0;
        margin-right: 0;
      }
    }
    
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

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