Hi, That’s a good point.!I was thinking about that too. would you do it on the theme setting or you have to do specifically everywhere you want it. Please let me know. thanks. Marielle.
Topic summary
Disabling text selection and image saving in the Dawn theme.
Text copy prevention:
- Add CSS in assets/base.css: body { user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }.
- Steps: Online Store → Theme → Edit code → assets/base.css → paste at bottom.
- This prevents text highlighting/selection across browsers.
Outcomes:
- Original poster and multiple users confirmed it works.
- One user reported it didn’t work; no alternative or follow-up fix was provided.
Image save prevention (right‑click/long‑press):
- Add CSS in base.css (after body rules): img { pointer-events: none; }.
- This blocks pointer interactions on images, preventing right‑click and long‑press save (and also disables clicking on images).
- Users confirmed this worked.
Theme settings vs. code:
- A question asked whether this can be done via theme settings; a reply suggested enabling/disabling either in theme settings or globally, but specifics were not clarified.
Status:
- Practical CSS solutions were shared and largely successful.
- Code snippets are central to understanding the fixes.
- Thread partially open due to one unresolved case where text selection block did not work.