How to remove variant heading in Showcase theme?

Hi there,

i am using the showcase theme. I would like to remove the “Size” title above my sizes. so it is just the sizes showing, with no title.

https://www.mateagluscevic.com/products/toes-in-the-sand

i have tried using this code in the custom css field in the theme editor:

.options.1 {

display: none !important;

}

it works but it made the whole section disappear - the title and all the sizes were no longer visible.

is there any other code i can use in the custom css field to only remove the size title?

Try this css

.options-1 label {
    display: none !important;
}

AMAZING! thank you so much :slightly_smiling_face:

@pralinepanini - please add this css to the very end of your styles.css file and check

.selector-wrapper label{display:none; visibility:hidden;}