Okay
  Public Ticket #2621652
menu color options
Closed

Comments

  •  2
    tingundan started the conversation

    Hi, how can I set the menu with box colors like this demo? https://demo.kaliumtheme.com/construction/


    thanks.

  •  1,558
    Laborator replied

    Hi tingundan,

    That's done using custom CSS, if you want I can provide the codes which we have added to implement that feature and if you're using a standard menu it will work, otherwise not. 

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  2
    tingundan replied

    Thanks Art, please send this code.


    Best regards, 

    T.

  •  1,558
    Laborator replied

    Hi again,

    Here is the CSS code which you will have to paste under Custom CSS

    /* Menu: Hover Style */
    .main-header.menu-type-standard-menu .standard-menu-container.menu-skin-dark div.menu>ul>li>a:hover span, 
    .main-header.menu-type-standard-menu .standard-menu-container.menu-skin-dark ul.menu>li>a:hover span {
        background: #f7c016;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }
    /* Menu: Removing the menu Hover Style from Submenus  */
    .sub-menu a span {
        background: transparent !important;
    }
    /* Menu: Active menu style */
    li.current-menu-item a span {
        background: #f7c016;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }
    

    P.S. I checked your site and there does not seem to be a menu at all.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  2
    tingundan replied

    Hi Art again,

    I try to set this code, but the space color inside every button its too stretch, and doesn't work for the hover. How can I manage it, just like the demo?

    https://demo.kaliumtheme.com/construction/

    Best regards, 


    T.

  •  1,558
    Laborator replied

    Hi there,

    I have added some more code and commented the one you were using in Custom CSS, the boxes are now as they should be.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  2
    tingundan replied

    thanks!!

    Now works perfectly =)