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