Need CSS to remove the "Add Menu" text and the search icon on top

Hi

I am trying to make a Coming Soon page while the site is under construction. There are no other pages. The Shapley theme has the menu and search on top of a one page theme, which seems strange if it’s a one page website. Anyway, I need code to get rid of the very top where it says, “Add a Menu” and also code to get rid of the Search icon.

I already tried this:

#navigation {
display:none;
}

That did nothing.

Thanks

Hi @foodshooter,

I hope you are well today and thank you for your question.

You can try removing it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other


#site-navigation .row > .module-group.right {
    display: none;
}

Best Regards,
Movin