Remove Menu icon on Mobile

Good day

for some reason i cannot remove this Menu icon on the Mobile version of my website

Can someone please help me ?

The 3 Lines at the top left i want to remove that ( Reason for that, i cannot change the color for some reason, if perhaps someone can help me to change the colour, that would be great )

Hello @Smith3d ,

To change the color:

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your Assets > header.css file and paste the following code at the bottom:

.mobile__menu_bar .icon-hamburger {
    color: #1011ff !important;
}

To hide it:

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your Assets > header.css file and paste the following code at the bottom:

.mobile__menu_bar .icon-hamburger {
    display: none !important;
}

Regards
Naveen