Change Sibling Color Name Pipeline

Solved

Change Sibling Color Name Pipeline

gm74
Visitor
2 0 1

How can I change the sibling color name on pipeline?

 

I don't want it to say color. 

 

https://njposterco.com/products/golden-gate-bridge-3

 

Screenshot 2025-05-28 at 8.12.19 PM.png

Accepted Solution (1)
AnneLuo
Shopify Partner
1359 237 278

This is an accepted solution.

Please replace the previous code with the following code.

<style>
.product__page__siblings .radio__legend {
  position: relative;
}
.product__page__siblings .radio__legend span:first-child{
  color: transparent !important;
}
.product__page__siblings span.radio__legend__label:after {
    content: 'Name';
    color: #424242;
    position: absolute;
    top: 0;
    left: 0;
}
</style>

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

View solution in original post

Replies 4 (4)

tim
Shopify Partner
4710 575 1702

Try this in sections "Custom CSS" setting:

.product__page__siblings .radio__legend__label {
  display: none;
}

.product__page__siblings  [data-swapper-target] {
  border: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

AnneLuo
Shopify Partner
1359 237 278

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.radio__legend {
  position: relative;
}
.radio__legend span:first-child{
  color: transparent !important;
}
.product__page__siblings span.radio__legend__label:after {
    content: 'Name';
    color: #424242;
    position: absolute;
    top: 0;
    left: 0;
}
</style>

Result:

AnneLuo_0-1748480983040.png

You can change the content: 'Name' to your text.
Hope this helps! If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

gm74
Visitor
2 0 1

That worked, but the size title under that is now gone. 

 

Screenshot 2025-05-28 at 10.04.23 PM.png

AnneLuo
Shopify Partner
1359 237 278

This is an accepted solution.

Please replace the previous code with the following code.

<style>
.product__page__siblings .radio__legend {
  position: relative;
}
.product__page__siblings .radio__legend span:first-child{
  color: transparent !important;
}
.product__page__siblings span.radio__legend__label:after {
    content: 'Name';
    color: #424242;
    position: absolute;
    top: 0;
    left: 0;
}
</style>

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee