Disable image dragble

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
User avatar
amir2314
 
 
Posts: 321
Joined: Wed Aug 02, 2017 12:16 pm

Disable image dragble

Post by amir2314 »

Hi dear pablo .
.
Is there any way to disable image dragble ?
User avatar
crispy68
 
 
Posts: 2912
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Disable image dragble

Post 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
User avatar
amir2314
 
 
Posts: 321
Joined: Wed Aug 02, 2017 12:16 pm

Re: Disable image dragble

Post 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 💎
User avatar
BaconFries
 
 
Posts: 5640
Joined: Thu Aug 16, 2007 7:32 pm

Re: Disable image dragble

Post 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>
Post Reply