Stiletto Theme - Remove color swatch box on product page

Is there a way to remove the box with the color swatch on the product page for Stiletto Theme? I tried removing it, but the box turned into a dropdown box. I would just like to keep the color title (ex. "Color: Green).

See photo reference below.

Hi @NewYorkais ,

This is Kate from PageFly - Landing page builder

Please share your store URL and if your store is password protected then please provide password too. So that we can help you.

Thank you.

Hi @NewYorkais ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file

.product__color-swatches .product__color-swatch[data-size=small][data-shape=rectangle] {
   display: none;
}
.product__block.product__block--medium {
   margin-bottom: 0 !important
}

Hope my answer will help you

there’s no base.css, just “custom.css” and “theme.css”

Sorry, you can add it to theme.css

Hello @NewYorkais ,

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

** @NewYorkais **

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

.product__color-swatches {
  display: none;
}

Thank you this worked.