Remove button

Hi I want to remove 3 buttons. The “Size guide” button is showing the clothing size. It seems to be pre-written in the theme coding. Can you tell me how to remove it? Store URL: besthomestayle.myshopify.com

1 Like
.ciloe-size-guide.relative {
    display: none;
}

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

Hello @U_John
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> bootstrap-min.css
add this code at the end of the file and save.

.ciloe-size-guide.relative {
display: none !important;
}

Result

If this was helpful, hit the like button and accept the solution.
Thanks

Hi @U_John

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file bootstrap.min.css and add this code at the end of the file

.ciloe-size-guide.relative {
    display: none !important;
}

Result

Best,

DaisyVo

1 Like