// ==UserScript==
// @name           VipProfile
// @author         Kasza Zsolt
// @description    myVIP profil renbekapó
// @version        Opera
// @include        http://*.myvip.hu/profile.php*
// @include        http://*.myvip.com/profile.php*
// @include        http://myvip.hu/profile.php*
// @include        http://myvip.com/profile.php*
// ==/UserScript==

document.addEventListener('load', function (e) {
  var d = document.getElementsByTagName('div');  
  for (var i = d.length-1; i > -1; i--) if(d[i].getAttribute('class') == 'k') {
    d[i].setAttribute('style', 'width: 20px;');
  }
}, false);