Hi, I have this website
https://warehouseroseevents.myshopify.com/
pass staticbus77
How do I center the logo I added on announcement bar?
Thanks for your help.
Hi, I have this website
https://warehouseroseevents.myshopify.com/
pass staticbus77
How do I center the logo I added on announcement bar?
Thanks for your help.
.announcement-bar__message {
font-weight: 400!important;
font-size: 18px!important;
width: auto !important;
text-align: center;
float: left;
display: block;
margin-bottom: 0!important;
}
Add this code theme.css or theme.scss
Please add the following CSS to your assets/theme.css bottom of the file.
center {
display: flex !important;
margin: 20px auto !important;
justify-content: center !important;
width: 100% !important;
}
Thanks!
Second solution
Please add the following CSS to your assets/theme.css bottom of the file.
.announcement-bar__message {
width: auto !important;
}
It’s not yet working on mobile version
Hi, thanks for your time, it did not work, It moves it to the left and it’s deformed in the mobile version
@media only screen and (max-width: 768px) {
.announcement-bar__message {
float: left;
display: none !important;
}
}
@urbantis
Add this code in the Theme.css
Thanks, I will try it, but I think I have a code overriding somewhere.