Hide Option Name on Product Page—Craft Theme

Hello! Hoping someone can help me out here. I want to hide the Option Name on the product page so you only see the variants, but not the Option Name (size, color, etc). Was able to easily do this on our previous theme, but can’t figure out how to do it on the Craft Theme.

Thanks in advance!

Andrea

1 Like

@culturedandi

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi @culturedandi
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.product-form__input .form__label {
display: none!important;
}

Hi @culturedandi ,

Go to Assets > base.css and paste this at the bottom of the file:

.product-form__input .form__label {
    display: none !important;
}

Hope it helps!

1 Like

Thank you so much! This worked perfectly! :grin:

While I have your attention… How do I add more white space between the price/afterpay messaging and the variant buttons. Everything is too close together.

Hi @culturedandi ,

Go to Assets > base.css and paste this at the bottom of the file:

.product-form__input {
    margin-top: 1.5rem !important;
}

Hope it helps!

This one unfortunately did not work :cry:

Hi @culturedandi ,

Please send your site and if your site is password protected, please send me the password. I will check it.