Viewing 28 posts - 1 through 28 (of 28 total)
  • Author
    Posts
  • #838876

    Ahoy I need to center my menu. Essential I want to center the menu items Home – Contact and than have the buttons be on the left. I’m not sure how to do this. Is there a way to create a menu item or 2 but leave it blank or hide it between contact and the buttons? Whenever i try to make a black button it says pending… I attached a Screenshot of what i’m trying to achieve.

    #839092

    Hey mcraig77,

    You can add the following code at Enfold Theme Options > General Styling > Quick CSS

    
    .menu-item {
      right: 26px !important;
    }
    

    Best regards,
    John Torvik

    #839097

    Ahoy John,

    Nothing happens when I add that. Please Advise

    #840623

    Hi,

    The buttons are also included inside the menu.
    I am not sure there is a way to move them easily. Most probably you have to add extra classes to the menu options
    so they can work out properly.

    You would need to hire a freelancer to help you out, to make it easier.

    Best regards,
    Basilis

    #840624

    Hmm…. there is no way to make a menu item inbetween the contact and signup and hide it? or make it blank?

    #841357

    Hi,

    I think you can add css class in the menu and use that to hide the menu, using values such as display:none; opacity:0; or visibility: hidden;

    Hope this helps.

    Best regards,
    Nikko

    #842252

    Cool, I figured how to hide it on desktop. How do I hide it on mobile?

    .menuhide {
      opacity:0 !important;
    
    }
    
    #842429

    Hi mcraig77,

    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

    
    .av-active-burger-items:nth-child(8), .av-active-burger-items:nth-child(9) {
      display: none;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #842689

    That code hides the log in and Signup buttons on mobile. Not “h” please advise.

    #842734

    Hi,

    Here is how you can hide it in mobile:

    @media only screen and (max-width:767px) {
      .myclass {
        opacity:0 !important;
      }
    }

    and you would probably need to show it in desktop:

    .myclass {
       opacity:1 !important;
    }

    Just change myclass with your assigned class name. Hope this helps :)

    Best regards,
    Nikko

    #842757

    I don’t want it to show on desktop or mobile. I inserted this code and it hide it on desktop – i tried adding the second code but it still shows… I need that whole button on mobile not available – not just hidden. Please advise on how to make the “h” button not there on mobile only.

    .menuhide {
      opacity:0 !important;
    }
    
    
    @media only screen and (max-width:990px) {
      .menuhide {
        opacity:0 !important;
      }
    }
    
    #842938

    Hi,

    Can you try to replace this css code:

    @media only screen and (max-width:990px) {
      .menuhide {
        opacity:0 !important;
      }
    }

    with this one:

    @media only screen and (max-width:990px) {
      .menuhide {
        display:none !important;
      }
    }

    Best regards,
    Nikko

    #843179

    Hi Nikko, I tried that code but the “h” is still in the mobile menu. I also found this article but it doesn’t seem to work http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    Please advise

    #843604

    Hi,

    Can you try adding this css code in Quick CSS:

    @media only screen and (max-width:990px) {
      .av-active-burger-items:nth-child(7) {
        display: none;
      }
    }

    Hope this helps.

    Best regards,
    Nikko

    #843647

    That kinda works… At first the “h” menu item loads but than disappears…. How do I make it not load before hand? Having it load looks cheap… I really need this to look professional.

    #843684

    Hi,

    Can you try replacing the last code I gave to this one:

    @media only screen and (max-width:990px) {
      .av-active-burger-items:nth-child(7) {
        display: none !important;
      }
    }

    Let us know if that fixes the issue.

    Best regards,
    Nikko

    #843691

    I replaced it but the same thing is happening. Please Advise.

    #844075

    Hi,

    I just checked it but I could not see the h in the menu item anymore. Can you try to clear your browser cache and check again?

    Best regards,
    Nikko

    #844107

    Cache is cleared. It is there still when you first open it… Than it disappears. I need it not not show up at all. It looks unprofessional like this. I attached movie of the issue.

    Please advise

    #844459

    Hi,
    I have read though this thread, but I don’t understand why you don’t just remove the menu item H?
    What is it for?

    Best regards,
    Mike

    #844575

    Pease see the first thread request mike. I would like to make the ‘h’ not visible on mobile at all. Please advise.

    #846639

    Hi,

    Please increase the viewport value in the css media query.

    @media only screen and (max-width:1366px) {
      .av-active-burger-items:nth-child(7) {
        display: none !important;
      }
    }

    Remove browser cache or hard refresh before checking the page again.

    Best regards,
    Ismael

    #846987

    Hi Ismael.

    I changed that and did the requested refresh but it still is showing up than disappearing. I’ve gone ahead and created a temp login for you below. Please Advise

    #847795

    Hi,

    Thanks for providing the login, I just tested different css codes I know it still has the same effect, would it be okay if just add some space on the desktop and don’t have a hidden menu?

    Best regards,
    Nikko

    #847870

    Hi Nikko,

    Sure if you can add some space after the contact menu tab that also works. Basically I just want the menu from home to contact to be centered from the logo and signup/ login buttons like this – see screenshot. I would also like it to look good on mobile. please let know what code was added and deleted.

    #848056

    Hi,

    I have adjusted it, let us know if it’s good :)

    Best regards,
    Nikko

    #848271

    That look good. What code did you change for reference?

    #848503

    Hi,

    Glad that you liked it, here is the code I used, you can see it in Quick CSS but not on the same location:

    
    .main_menu #menu-item-3405 {
        margin-left: 8vw;
    }
    
    @media only screen and (max-width:1366px) {
      .main_menu #menu-item-3405 {
        margin-left: 2vw;
      }
    }

    Best regards,
    Nikko

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