Okay
  Public Ticket #3363917
Change accent button in off canvas
Closed

Comments

  •  16
    Josée started the conversation

    Hi!

    I would like to change the font color and the button background color of an accent button in the off canvas menu on tablet and mobile. How can I achieve that? 

    I didn't found any parameter to change in Salient's setting so I tried with the css, but the parameters are on a ::before, that means, if I want the bg-color 100% opacity, the button text is no longer visible.

    Can you help with that?

    Thanks a lot!

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    body #slide-out-widget-area .nectar-menu-label:before {
        background-color: #54b948;
        opacity: .5;
    }

    Thanks


    ThemeNectar Support Team