• Resolved rbnlight

    (@rbnlight)


    I would like to ask if it is possible to add the word ‘menu’ next to the 3 line menu navigation button that appears when using the website on a mobile device. thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hii,

    Go to enigma theme directory and open header.php and see line no. 96

    <span class="icon-bar"></span>

    replace it with below code and save the file.

    <span class="icon-bar"><span class="menu">Menu</span></span>

    Now go to Dashboard -> Appearance -> theme options -> theme general options -> paste the below code in custom CSS box and save.

    @media(max-width:480px){
    .menu {
    	color: #fff;
        padding-left: 22px;
    }
    .navbar-toggle:hover {
        padding-right: 38px !important;
    }
    .navbar-toggle {
        padding-right: 38px !important;
    }
    }

    Thanks.

    Thread Starter rbnlight

    (@rbnlight)

    wow

    thanks, worked fine!!

    You’re most welcome.

    Please mark the thread as solved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add word ‘menu’ next to Three Line Menu Navicon’ is closed to new replies.