How can I modify the checkout text box message?

Hello,

I have added a text box at checkout on my website. As a default setting it says “Special instructions for seller”. Is there any way to customize this text or is it unchangeable? All help is highly appreciated.

My website: cryptoalgos.net

Thanks

I don’t know your theme files, but there is a trick you can use in CSS, add the below lines to your main CSS file and replace the Your new text with the text you want. End result at the bottom. This is kind off tricky, but will work.

.cart-drawer__item-list > .cart-drawer__item.cart-drawer__note-container > label {
color: #000;
position: relative;
}
.cart-drawer__item-list > .cart-drawer__item.cart-drawer__note-container > label:after {
content: ‘Your new text’;
color: #fff;
position: absolute;
width: 100%;
right: 0;
}

Now send me some crypto! :slightly_smiling_face:

Thank you for your reply!

It seems to work, however, it does not seem to replace the old text, rather print it on top. Any ideas on how to remove the old text? @Helenama

Thank you!

My bad, it seems to work, I forgot to enter a paragraph. Thanks for your help!

Good to read, you’re welcome!