RIP SG 2014
SG Tools
SG Tools
-
#2647
Stílusba: .maskwindow img {Vagy pl a hozzászólás szélességéhez igazítani, amivel még mindig kicsinyít ugye, de nem annyira.
width: auto !important;
border: none !important;
cursor: auto !important;
}.maskwindow img {Esetleg hogy kattintásra se dobja fel ablakban csak css-el IE-ben nem of menni (kiv 11-ben):
width: auto !important;
border: none !important;
max-width: 100%;
}.maskwindow img {Vagy javascriptel, jquery-vel (ha már van topicban).
...
pointer-events: none;
}$('.maskwindow img').bind('click', function(e) {Vagy .bind helyett .on, ha újabb jquery.
e.preventDefault();
return false;
}).each(function() {
this.onclick = function() { return false; };
});