Okay
  Public Ticket #1293830
Portfolio
Closed

Comments

  • iforapps started the conversation

    Hi Guys, love your theme, it there any way to remove the zoom effect from the portfolio thumbnails? Thanks

  •  2,005
    Ocean replied

    Hello,

    You can remove this js code in designesia.js file, find line code -> /* gallery hover */ :

    var w = jQuery(this).find("img").css("width");
                 var h = jQuery(this).find("img").css("height");
                 var w = parseInt(w, 10);
                 var h = parseInt(h, 10);
                 var $scale = 1.2;
                 
                jQuery(this).find("img").stop(true).animate({
                        width:  w*$scale,
                        height: h*$scale,
                        'margin-left': -w*($scale - 1)/2,
                        'margin-top':  -h*($scale - 1)/2
                }, 700,'easeOutQuad');
    

    Thank you

  • iforapps replied

    Thank You.