Я подкорректированный выгрузил выше.strelok-by писал(а):может анвар подкоректирует экст
Но либо его не поставил, либо кэш не чистил, так как в исходном коде:
Код: Выделить всё
<script type="text/javascript">
$(document).ready(function() {
/* Add resize attach in phpBB3.1 && Anvar bb3.mobi */
	$('dl.thumbnail img, dt.attach-image img').load(function() {
		$(this).removeAttr("width")
		$(this).removeAttr("height")
		$(this).css({ width: "", height: "" });
		var w  = $(this).width();
		var h = $(this).height();
		var rh = $(this).height();
		if (w > h) {
			h = w;
			w = w*(h/rh);
		}
		$(this).attr("width", w*(3/4));
		$(this).attr("height", h*(3/4));
	});
	$('dl.thumbnail img, dt.attach-image img').each(function() {
		var src = $(this).attr('src');
		$(this).attr('src', '');
		$(this).attr('src', src);
	});
});
</script>Я тоже так думаю.strelok-by писал(а):Нормально всё

