42
Quote:
Bleekk wrote:
This is how we add the class in images automatic on xoops.org
<script>
$( document ).ready(function() {
$("img").addClass("img-responsive");
$( "form img" ).removeClass( "img-responsive" );
$(".xoops-comment-text").each(function() {
$(this).find("img").css( "display", "inline" );
});
$(".page_bookmarks").each(function() {
$(this).find("img").css( "display", "inline" );
});
$(".page_icons").each(function() {
$(this).find("img").css( "display", "inline" );
});
});
script>
It must be changed to inline-block. Then it works more correctly.