Specific No Image Drag
Specific No Image Drag
How do I make it where you can't drag images in only the forum? I tried adding this to template: style="pointer-events:none;" in points of the template, but it doesn't work and I also tried just adding to the template:
I just want the drag to work in the forums, not everywhere
(I really need the drag to still work in the PMs)
- Code:
<style>
[size=13].post .content img{pointer-events: none;}[/size]
[size=13]</style>[/size]
I just want the drag to work in the forums, not everywhere

Re: Specific No Image Drag
So you don't want any images to be draggable in posts only, correct?
If your forum version is phpBB3 like your post profile says, try adding this to your CSS (ACP -> Display -> Pictures and Colors -> Colors -> CSS Stylesheet):
If your forum version is phpBB3 like your post profile says, try adding this to your CSS (ACP -> Display -> Pictures and Colors -> Colors -> CSS Stylesheet):
- Code:
.post .postbody img {
pointer-events: none;
}
Re: Specific No Image Drag
It is, but I still can't drag on PMs :c@Fierce Star wrote:So you don't want any images to be draggable in posts only, correct?
If your forum version is phpBB3 like your post profile says, try adding this to your CSS (ACP -> Display -> Pictures and Colors -> Colors -> CSS Stylesheet):
- Code:
.post .postbody img {
pointer-events: none;
}
Re: Specific No Image Drag
try adding this
- Code:
form .post .postbody img {
pointer-events: unset!important;
}
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum