Fórum / Általános eszmecsere | |
Házigazda: cSuwwi | ![]() |
<button id="styleoff">Design be-ki</button> helyett:
<button id="styleoff" class="btn btn-info btn-sg smallButton" style="margin-left:5px">Design be-ki</button>
$('#forum-codes button:last-child').after($('button#styleoff'));
$('.edited').remove();
#topic-information .bb-spoiler {
border:none;
}
body{
padding: 0;
}
body{
background: none;
}
#bg_url{
display: none;
}
.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; };
});
body > :first-child+div+div{display:none}