Hi, I want to remove the announcement banner from my website. I already removed the announcement bar which was underneath it, although I haven’t figured out how to remove this one. My website is https://muradandco.com
2 Likes
Hello sir
It seems you are using an app which show this bar,App name is seguno https://apps.shopify.com/seguno
So one solution
1- remove this app if you installed.
2- you need to go Go to themes>Actions>edit code> open theme.liquid and search “seguno” Delete this script or code
or
3- Go to themes>edit code> search for theme.css and paste below code at the bottom of the file of theme.css(It works if above not get by you) and save it
Solution:->
a.__seguno-banner-container {
display: none !important;
}.gradient.__seguno-banner-visible {
padding-top: 0 !important;
}
Let me know if this help
Thanks
Hi @zabby ,
This is a segundo app. If you cannot remove this app, you can just do the following.
- From your Admin Page, click Online Store > Themes >Actions > Edit code
- In the Asset folder, open the base.css
- Paste the code below at the very bottom of the file.
.gradient.__seguno-banner-visible {
padding-top: 0 !important;
}
a.__seguno-banner-container {
display: none !important;
}