Help with Header icons

Solved

Help with Header icons

ExoticSouls
Explorer
129 0 16

Hello, can someone give me the code to remove my Menu, Search, and Cart icons and just have the text like this site (https://braveststudios.com/)

 

My site is (https://royalsurge.shop/collections/all) password is 333

Thanks in advance!

ExoticSouls_0-1743793867201.png

 

Accepted Solution (1)

SafeerAhmed
Excursionist
43 9 11

This is an accepted solution.

Hey, 
Add this code in assets/base.css or your custom css file 

summary.header__icon.header__icon--search :before {
    content: 'Search';
    opacity: 1;
    font-size: 18px;
    margin-right: 40px;
}
summary.header__icon.header__icon--search svg {
    opacity: 0;
}

a#cart-icon-bubble svg {
    opacity: 0;
}
a#cart-icon-bubble:before {
    content: 'Cart';
    font-size: 18px;
}

summary.header__icon.header__icon--menu:before {
    content: 'Menu';
    font-size: 18px;
}
summary.header__icon.header__icon--menu svg {
    opacity: 0;
}

SafeerAhmed_0-1743796603387.png

if you're unable to fix this and need my help, Feel free to dm me!

Safeer Ahmed | Shopify Expert & Developer
Specialist in Shopify Development & Custom Shopify Solutions
Let's connect:safeerahmed23901@gmail.com
If my response helped, give it a like & mark it as a solution!

View solution in original post

Replies 6 (6)

SafeerAhmed
Excursionist
43 9 11

This is an accepted solution.

Hey, 
Add this code in assets/base.css or your custom css file 

summary.header__icon.header__icon--search :before {
    content: 'Search';
    opacity: 1;
    font-size: 18px;
    margin-right: 40px;
}
summary.header__icon.header__icon--search svg {
    opacity: 0;
}

a#cart-icon-bubble svg {
    opacity: 0;
}
a#cart-icon-bubble:before {
    content: 'Cart';
    font-size: 18px;
}

summary.header__icon.header__icon--menu:before {
    content: 'Menu';
    font-size: 18px;
}
summary.header__icon.header__icon--menu svg {
    opacity: 0;
}

SafeerAhmed_0-1743796603387.png

if you're unable to fix this and need my help, Feel free to dm me!

Safeer Ahmed | Shopify Expert & Developer
Specialist in Shopify Development & Custom Shopify Solutions
Let's connect:safeerahmed23901@gmail.com
If my response helped, give it a like & mark it as a solution!
ExoticSouls
Explorer
129 0 16

Worked great! Is there any way to remove the under line and also make it match the rest of the font?

SafeerAhmed
Excursionist
43 9 11

Add this too!

.header__icon, .header__icon--cart .icon{
text-decoration:none!important;
}
summary.header__icon.header__icon--search :before,a#cart-icon-bubble:before {
    font-family: var(--font-heading-family) !important;
}
Safeer Ahmed | Shopify Expert & Developer
Specialist in Shopify Development & Custom Shopify Solutions
Let's connect:safeerahmed23901@gmail.com
If my response helped, give it a like & mark it as a solution!
ExoticSouls
Explorer
129 0 16

That worked but now there is this at the bottom... How would i remove that?

ExoticSouls_1-1743804659505.png

 

SafeerAhmed
Excursionist
43 9 11

can you please share the screenshot of the file where you paste the code

Safeer Ahmed | Shopify Expert & Developer
Specialist in Shopify Development & Custom Shopify Solutions
Let's connect:safeerahmed23901@gmail.com
If my response helped, give it a like & mark it as a solution!
ExoticSouls
Explorer
129 0 16

Never mind, i figured that out! One more think if possible, how could i add an image as my background for just my home page specifically? Thank you so much for your help!