Menu icon in mobile not very visible

When I see my website on my mobile I notice that I can barely see the menu icon if at all, the one with the three horizontal lines… How do I remedy this? Can I change the icon color/styling?
Regards

Hi,

You can change the color and add some border to make it prominent.

To do that, add the code below in Theme Options > CSS

.x-btn-navbar {
    border-radius: 5px;
    padding: 12px;
    box-shadow: inset 0 0 0 transparent, 0 1px 5px rgba(0,0,0,0.45);
    color: #fff !important;
}

Hope that helps.

It did! Cheers for that.

You’re welcome.

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