Mobile - black menu-lines

Hi there,

Can I make this box white with black menu-lines?
See attachment.

Carla

Hi There,

Please add this custom CSS under Theme Options > CSS:

.x-btn-navbar {
color: #000;
background-color: #fff;
}

Hope it helps :slight_smile:

Hi Thai,

Thanks for your reply. See the results in the attachment.
I’m waiting for your answer.

Greets, Carla

Hi again,

Please replace the previous code with the following code:

.masthead .x-navbar .x-btn-navbar {
    color: #000;
    background-color: #fff;
    box-shadow: none;
}

Cheers!

Hi Nabeel,

Thanks a lot. Is it possible to put the menu 2 pixels below?
See attachment.

Carla

Hi Carla,

You can add margin top to the code provided above.

.masthead .x-navbar .x-btn-navbar {
    color: #000;
    background-color: #fff;
    box-shadow: none;
    margin-top:2px;
}

Hope that helps.

1 Like

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