Change Size of Profile Image

From KickApps Documentation

Jump to: navigation, search

Description

This code snippet will allow you to change the size of the profile image on a profile page.

The available sizes are:

"48X48", "100X75", "160X120", "320X240", "420X315", "730X550"

Code

if (Ka.Info.PAGE == "pages/kickPlaceServerSide.jsp") {
    $j('#ka_profileImg span').each(function() {
        var $this = $j(this);

        var newStyle = $this.attr('style').replace('160X120', '320X240', 'ig');
        $this.attr('style', newStyle);
    });
}