Disable image dragble
Posted: Sun Jul 09, 2023 8:48 pm
Hi dear pablo .
.
Is there any way to disable image dragble ?
.
Is there any way to disable image dragble ?
WYSIWYG Web Builder
http://forum.wysiwygwebbuilder.com/
Thank you verymuch dear crispycrispy68 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
Code: Select all
<style>
img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>