How can I add more space between variant selector and payment sections?

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.

@SimoneKhamore

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!

www.simonekhamore.com

1 Like

@SimoneKhamore

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.

1 Like
@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.

@SimoneKhamore

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.

Show More

It worked ! Thank you!

1 Like

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;
}
1 Like
Show More

Thank You! It worked.

Now, how do I get rid of this About Us text in black?

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;
}