Theme: Symmetry - Remove Cart + Search Icon + remove announcement bar

As written in the subject I want to remove Cart + Search Icon + remove announcement bar.

Does anybody have a code an in which page do i paste it? Do I paste it in “style.css.luquid” ? there is no theme.css or base.css

Theme: Symmetry

URL: https://www.cotiereofficial.com/

PW: test1234

Assuming you only want this temporarily, and hope to get it back some day, you can just hide it with css.

/* hiding menu items and announcement bar */
.logo-area__right{ display:none }
#shopify-section-announcement-bar { display: none; }

Just add this line to end of style.css.liquid or theme.css (basically a file with .css in name).

Do note this will shift your logo to right. If you want logo to maintain its position, use

/* hiding menu items and announcement bar */
.logo-area__right {opacity: 0;}
#shopify-section-announcement-bar { display: none; }

You can delete this lines in future when you do want to show it.

Please add below css code in bottom of assets/styles.css file

.section-announcement-bar {
display: none;
}
.logo-area__right__inner {
display: none;
}
Thank you.