I need some help if you don´t mind.
I have installed the abbc3 from https://www.phpbb.com/customise/db/mod/advanced_bbcode_box_3/ and everything works less the image resize to make for example full display but on prosilver works just fine
I have remove this from theme.js to make disappear from the image the little zoom but still not working !
Code: Select all
function imageClicked(event)
{
var $this = $(this);
if ($this.hasClass('zoomed-in'))
{
$this.removeClass('zoomed-in').css('max-width', $(this).attr('data-max-width') + 'px');
}
else
{
$this.addClass('zoomed-in').css('max-width', '100%');
}
There is something else wrong but i don´t know what it is.
Regrads