Page 1 of 1

Disable image dragble

Posted: Sun Jul 09, 2023 8:48 pm
by amir2314
Hi dear pablo .
.
Is there any way to disable image dragble ?

Re: Disable image dragble

Posted: Sun Jul 09, 2023 10:00 pm
by crispy68
Try this:

1. Right click on the image and choose object HTML
2. Choose the 'Inside Tag' tab
3. Add the following: draggable="false"
4. hit ok

Re: Disable image dragble

Posted: Sun Jul 09, 2023 11:12 pm
by amir2314
crispy68 wrote: Sun Jul 09, 2023 10:00 pm Try this:

1. Right click on the image and choose object HTML
2. Choose the 'Inside Tag' tab
3. Add the following: draggable="false"
4. hit ok
Thank you verymuch dear crispy 💎

Re: Disable image dragble

Posted: Mon Jul 10, 2023 12:57 am
by BaconFries
With the following css it will prevent all images in the page being selected. To use add to your page html Between the <head></head> tags*

Code: Select all

<style>
img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>