I don’t have a menu on my site but when I view in mobile, the three lines still appear. How can I get rid of or at least change to color to the same as white background?
Login to your admin dashboard and go to Appearance > Customize > Ambition Theme Options > Custom CSS and paste below custom CSS code to hide the menu toggle button.
@media only screen and (max-width: 767px) {
.menu-toggle {
display: none !important;
}
}