Hello, I hope all is well.
I would like to add more space in between the variant selector and shop pay installments section.
Hello, I hope all is well.
I would like to add more space in between the variant selector and shop pay installments section.
hello @SimoneKhamore
Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.
please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.
@media only screen and (max-width:768px){
.variant-wrapper {margin-top: 20px !important;}
}
Thanks!
please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.
@media only screen and (max-width:768px){
.variant-wrapper {margin-top: 20px !important;}
}
Copy
Thanks!
hello @SimoneKhamore
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media only screen and (max-width:768px){
.variant-wrapper {margin-top: 20px !important;}
}
It didn’t do anythig.
@media only screen and (max-width:749px){
.variant-wrapper {margin-top: 20px !important;}
}
Add this code. in theme.scss
It didn’t change a thing. This must be difficult. I don’t know what’s going on.
It didn’t change a thing. This must be difficult. I don’t know what’s going on.
@media only screen and (max-width:749px){
.product-single__form {
margin-bottom: 30px;
margin-top: 40px !important;
}
.product__quantity {
margin-bottom: 40px !important;
}
}
Add this code to theme.scss
It’s so weird. Nothing’s happening.
Please add the following code at the bottom of your assets/theme.scss.liquid file.
.product-single__form .variant-wrapper{
margin-top: 20px !important;
}
This should work for desktop and mobile both and remember to put this code in above given CSS file at the bottom.
It worked ! Thank you!
It worked! Thank you!
Hello, I hope all is well.
I have a few questions. First, I would like to make my font under the main menu larger. How do I go about this?
hello @SimoneKhamore
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.mobile-nav__sublist .mobile-nav__sublist-link >a {
font-size: 15px;
}
@SimoneKhamore
Add this code in theme.scss
.mobile-nav__sublist .mobile-nav__sublist-link >a {
font-size: 15px !important;
}
hello @SimoneKhamore
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
body#about-us .section-header--title{
display: none;
}