Mobile menu button styling

http://entrecoach.kinsta.com

So, the mobile menu button at the moment is grey, dark green 3 lines.

How do I do the following?

1: Make the background color of the button slightly transparent?

2: Make the 3 lines white?

3: Add a thin blue border around the button.

Thanks.

Hi there,

Please try this code in the Global CSS:

.x-navbar-inner .x-btn-navbar {
    background-color: rgba(255,255,255,0.6);
    color: #fff;
    border: 1px solid #00BBE3;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

Perfect! thank you!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.