Hello
Pretty much the title here. I asked this question over the weekend with not much luck. Maybe now during the week I’ll get someone to help me out 
I have purchased the premium theme called Cuber (It came with Looker, Cuber, and Jagger, https://themes.shopify.com/themes/split/styles/cuber/preview) and I’m wondering if its possible to hide the Cart + Search icon completely? For the next bit while I won’t be selling anything on the website so a cart is not necessary.
Also, if possible, to move the logo from the left side to the center?
Than you so much everyone 
Go to your online store → edit code → section-header.css file and paste this code there in the end of file
span#site-search-handle {
display: none !important;
}
span#site-cart-handle {
display: none !important;
}
@media (min-width:768px){
main-header#site-header {
justify-content: center !important;
position: relative !important;
}
button#site-menu-handle {
position: absolute !important;
right: 30px !important;
top: 25px !important;
}
}
Hi @SellingWithAlex ,
Please go to Actions > Edit code > Assets > section-header.css file and paste this at the bottom of the file:
#site-search-handle {
display: none !important;
}
#site-cart-handle {
display: none !important;
}
Hello 
This is nearly perfect! Thank you SO SO MUCH! I added the code in “Custom CSS” section of the header. It seems to work 
Just two more things that are there
- On Mobile, its still not centered
- The Menu Burger (I think that is what its called) appears on the left side, any way to hide it?