hi!
my free shipping bar is overlapping my header logo on mobile view how can I fix this?
shop url: https://www.gallerychristian.com
thanks!
Christian Russo
hi!
my free shipping bar is overlapping my header logo on mobile view how can I fix this?
shop url: https://www.gallerychristian.com
thanks!
Christian Russo
Hi @christian_russo
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
#qab_background {
height: auto!important;
}
#qab_bar {
padding: 10px 15px !Important;
}
Hi @christian_russo
In this case I think you should use section announcement bar in dawn theme, instead of the section from 3rd app.
Hi @christian_russo ,
Thank you for reaching out to the Shopify forums!
Let me quickly fix that issue for you.
Please add the below CSS into your base.css file:
@media screen and (max-width:768px) {
.header-wrapper .header {
display: grid;
grid-template-areas: 'left-icon heading icons';
grid-template-columns: 1fr 2fr 1fr;
align-items: center;
padding-top: 3rem;
padding-bottom: 1rem;
padding-left: 25px;
padding-right: 25px;
}
}
So, it will look like this:
If its working on your store then, do not forget to accept this solution ![]()
Thanks & Regards,
Prezen Tech
it’s not working for me ![]()
isn’t there any way to fix it because I like to use this app
Sure, let me help you again with this.
Please add this below CSS in your base.css file.
@media screen and (max-width:768px) {
.header.header--top-center.page-width.header--has-menu {
padding: 0 25px;
}
}
Hello @christian_russo
Go to the online store >Theme >Edit code >Assets >base.css >Add code in this file -
@media only screen and (max-width: 768px){
.header {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.header__icon--cart {
margin-right: 0 !important;
}
header-drawer {
margin-left: 0 !important;
}