plugins - How do I change my photos in square size in instafeed? -


i use instafeed plugin on website. since june 1, 2016, instagram api change settings. photos change different sizes. how change before? want square size.

these instafeed settings:

var bravesminimal = new instafeed({     target: 'tab1',     get: 'tagged',     tagname: 'mytagname',     userid: xxxxxxxxxxxxx,     accesstoken: 'xxxx',     limit: 12,     resolution: 'low_resolution',     template: '<div class="insta-wrap"><img src="{{image}}" /><a href="{{link}}" target="_blank"><div class="likes-wrap"><div class="likes">&hearts; {{likes}}</div></div></a></div>',     after: function() {         if (!this.hasnext()) {             mybutton.hide();         }     } }); 

you can protect square size adding css example:

#instafeed img{         width:75px;         height:75px; }