How do you remove sizing option next to description on the avatar theme?

I’ve been trying to figure this problem out but I haven’t stumbled upon any solution.

I use the Avatar theme. On the product page there’s a description. Next to it is a sizing option that I don’t have a use for.

hello @AidanToponce

Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.

1 Like

Thank you for taking a look! My site url is https://phone-mini-theater.myshopify.com/?_ab=0&_fd=0&_sc=1&key=a9d9c008c1b17b45199183ecdde490e009e10522d4b4512acccd8c29184bc93e

My password is aidan

hello @AidanToponce

please Go to Online Store->Theme->Edit code then go to assets/theme-vendor.css ->paste below code at the bottom of the file.

#shopify-section-product-template .product-tabs  .nav.nav-tabs .nav-item:nth-child(2){
	display:none;
}
1 Like

Hii, @AidanToponce
Paste this code in top of layout.theme.css file.

li.nav-item a:not(#description-tab) {
    display: none !important;
}

Thank You.

It worked! Thank you so much @Kinjaldavra !