Hi, please can someone tell me how can i remove the arrows from the announcement bar in the prestige theme?
Topic summary
A user seeks to remove navigation arrows from the announcement bar in Shopifyās Prestige theme. A community helper provides a CSS solution:
Solution provided:
- Navigate to Shopify admin ā Online Store ā Themes ā Actions ā Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following code at the bottom:
button.tap-area {
display: none;
}
The solution successfully removes the arrows. A follow-up question emerges about removing underlines from announcement bar links, which is addressed with additional CSS:
h1.announcement-bar__message h5 {
text-decoration: underline;
}
Status: The original issue is resolved. A new related request about adding clickable phone and email icons to the announcement barās left corner remains open and awaiting response.
Hi @Ady2 ,
Would you mind to share your URL website? with password if its protected. Thanks!
Thank you for the information. Try this.
- From your Shopify admin dashboard, click on āOnline Storeā and then āThemesā.
- Find the theme that you want to edit and click on āActionsā and then āEdit codeā.
- In the āAssetsā folder, click on ābase.css, style.css or theme.cssā file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code.
- And Save.
button.tap-area {
display: none;
}
Result:
![]()
I hope it help.
Thank you! You are a genius!!! It worked!
Welcome.
oh i think you put the solution wrong. ![]()
Thank you! It worked. Now that my link is without the arrow, I need it to be underlined. Can you Please help me?
Hi @Indra3
Thanks! Good thing it work in your store. Do you liek to add undelined on the text? Would you mind to share your store URL? Thanks!
Hi, sure here it is: https://www.icyoujewellery.com/
Thank you in advance, Indra
Do you mean like this?

If it is check this one.
From your Shopify admin dashboard, click on āOnline Storeā and then āThemesā.
Find the theme that you want to edit and click on āActionsā and then āEdit codeā.
In the āAssetsā folder, click on ābase.css, style.css or theme.cssā file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
h1.announcement-bar__message.h5 {
text-decoration: underline;
}
And Save.
Please donāt forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you so much, Iām really happy it works! -How can I mark your reply as āsolutionā for you?
Additionaly, I also need a clickable phone & email icon in the left corner of the annoucementbar. Can you help me with this as well?