I want to have to separate (and different) text bodies in the announcement bar as demonstrated in the image below.
Shop: https://zhwyafdey949l34a-66895675693.shopifypreview.com
is this possible?
Thanks
I want to have to separate (and different) text bodies in the announcement bar as demonstrated in the image below.
Shop: https://zhwyafdey949l34a-66895675693.shopifypreview.com
is this possible?
Thanks
Hi @memikee ,
Your preview link has expired.
Please give us a new link.We will check it and suggest you a solution if possible.
Thank you for your response.
Here’s a new link: https://hwzb83dmtta0u7bt-66895675693.shopifypreview.com
Step 1: Go to Theme => Edit code
Step 2: Find the theme.css or base.css file and add this code snippet at the end of the file:
@media screen and (min-width: 990px)
.announcement-bar-slider {
width: 100% !important;
}
@media screen and (min-width: 750px)
.utility-bar .page-width {
padding: 0 0rem !important;
}
.announcement-bar__link{
justify-content: right !important;
}
.announcement-bar__announcement{
justify-content: left !important;
}
.page-width {
max-width: 100% !important;
}
Result:
Good luck!