In manager/actions/welcome.static.php the size of hometblink icons (icons in the manager dashboard) are fixed to 32x32px
// setup icons
if($modx->hasPermission('new_user')||$modx->hasPermission('edit_user')) {
$icon = '<a class="hometblink" href="index.php?a=75"><img src="'.$_style['icons_security_large'].'" width="32" height="32" alt="'.$_lang['user_management_title'].'" /><br />'.$_lang['security'].'</a>';
$modx->setPlaceholder('SecurityIcon',$icon);
the size should be removed to allow better customization of welcome.html page in manager themes.
-
☆ A M B ☆
- 24,524 Posts
And those files in assets/templates/manager should get moved into the theme folder; as it is they get overwritten with every upgrade. It takes a bit of search-and-replace to find and replace all the references to these files, but as I recall from doing it myself a year or so ago it wasn't really all that difficult.