Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #686387

    Hey guys,
    love the burger menu for the desktop version.
    Is it possible to have it say MENU with a frame around it (like a light button) as opposed to the burger icon?
    Some users for this specific client are not the most tech savvy.

    LMK…thanks!
    JS

    #687238

    Hi Justin,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #687526

    Here’s the link Rikard and login Rikard.
    Thank you.

    #687536

    Hi,

    Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Basilis

    #687545

    OK and just to confirm. This is NOT to reproduce the menu.
    It’s to just swap out the burger icon, with an image or whatever that says MENU.

    #687585

    Hi!

    Please add following code to Quick CSS

    .av-hamburger strong {
        display: block;
    }
    .av-hamburger-inner {
        display: none;
    }

    Regards,
    Yigit

    #687645

    Yigit, I think you just nailed it.
    I am assuming and stylize MENU at this point using Firebug.
    Thank you,
    Justin

    #687654

    Hey!

    Yay!
    You can style the menu text using following selector

    .av-hamburger strong { 
    color: white;
    font-weight: 100;
    }

    Best regards,
    Yigit

    #687661

    I started this. Getting it framed similar to the example might be a challenge.

    #687719

    Hi!

    Not if #TeamKriesi got your back ;D
    Please add following code to Quick CSS as well

    .html_burger_menu .av-burger-menu-main {
        right: 50px;
    }
    .av-main-nav > li > a {
        height: 50px!important;
        line-height: 50px!important;
        position: relative;
        top: 30px;
    }
    .av-hamburger strong {
        display: block;
        min-width: 100px;
        text-align: center;
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #687726

    Hey!

    Glad you got it somewhere.
    Please feel free to let us know if we can do anything else for you,
    we will be more than happy to help further.

    Thanks a lot for your understanding

    Best regards,
    Basilis

    #687742

    Thanks guys…looks GREAT!
    Now the one challenge I am looking at, which wasn’t previously considered … is its usability.
    When the menu is selected, there is no X that indicates to the user that they can close out of the menu.

    This clients audience is not very well-seasoned in technology. I can see them getting stuck on what to do next if the X is not there to clearly indicate to them they can close the window out. IF that makes sense!

    JS

    #688826

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .is-active .av-hamburger-inner {
        display: block;
    }
    .is-active .av-hamburger-box strong {
        display: none;
    }
    

    Best regards,
    Yigit

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