Zu Punkt eins, dies kannst du per CSS ändern.
.multirankContainer > .userTitle{
margin-bottom: 5px;
}
Zu Punkt zwei dafür muss folgende PHP Datei um diesen Inhalt geändert werden wcf\lib\system\multirank\MultirankUserProfile.class.php
<?php
namespace wcf\system\multirank;
use wcf\system\WCF;
/**
* The object type for user profile to append the multirank
*
* @author Olaf Braun
* @copyright 2013-2017 Olaf Braun - Software Development
* @license WBB-Elite.de License <https://lizenz.wbb-elite.de/lizenz.html>
* @package de.wbb-elite.multirank
* @category Several rank graphics
*/
class MultirankUserProfile implements IMultirank {
/**
* @inheritdoc
*/
public function getAppendContainer() {
return '.contentHeaderIcon .userAvatarImage';
}
/**
* @inheritdoc
*/
public function getContainer() {
return '#tpl_wcf_user .userProfileUser';
}
/**
* @inheritdoc
*/
public function getDataUserID() {
return 'user-id';
}
/**
* @inheritdoc
*/
public function getTitle() {
return WCF::getLanguage()->get("de.wbb-elite.multirank.userProfile");
}
/**
* @inheritdoc
*/
public function getUserIDElement() {
return '.userIDDiv';
}
}
Alles anzeigen
Und zu Punkt drei, dies geht nur global und würde über folgenden CSS-Code gehen.
.multirankContainer > .userTitle{
display: inline-block;
}