How can I disable the copy function on my Symmetry theme?

Some posts here suggest pasting a code to asset-base.css to prevent highlights to copy.

However, I did not see asset-base.css under my theme “symmetry”

Is there another way to disable the action to copy?

Thank you

candra

Hey @candra72 ,

You can add the following code to main.css at the end, to disable copying on your whole site

body {

-webkit-user-select: none;

user-select: none;

}

Thanks

Yash Garg

Hi @candra72

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

Thank you, appreciate it !!