ich hab mir die Shoutbox vorgenommen und etwas geändert. Ab sofort wird auch das Avatar des Users angezeigt, der ein Shoutboxeintrag getätigt hat. Wenn man mit dem Mauszeiger drüber fährt, wird es autom. doppelt so groß. Um dies zu bewerkstelligen muss folgender Code bearbeitet werden:
Man öffne die Datei "application/modules/shoutbox/boxes/views/shoutbox.php"
Einfügen in Zeile 1 - 9
<style> img.gross { transition: transform 1.0s; border: 1px solid #f4d700; } img.gross:hover { transform: scale(2.0, 2.0) rotate(360deg); } </style>
dann in Zeile 191 - 196
<?php $bild = $this->getUrl('user/profil/index/user/' . $user->getAvatar()) ; $song = $bild; $modi = strstr($song, '/index.php/user/profil/index/user'); $show = str_replace('/index.php/user/profil/index/user', '', $modi); ?>
dann in Zeile 199
<img class="gross" src="<?=$show ?>" width="20" height="20" style="border-radius:5px;">
und dann noch in Zeile 206
<img class="gross" src="<?=$show ?>" width="20" height="20" style="border-radius:5px;">
Jetzt die Datei "application/modules/shoutbox/views/index/index.php"
Einfügen in Zeile 1 - 9
<style> img.gross { transition: transform 1.0s; border: 1px solid #f4d700; } img.gross:hover { transform: scale(2.0, 2.0) rotate(360deg); } </style>
dann in Zeile 30 - 35
<?php $bild = $this->getUrl('user/profil/index/user/' . $user->getAvatar()) ; $song = $bild; $modi = strstr($song, '/index.php/user/profil/index/user'); $show = str_replace('/index.php/user/profil/index/user', '', $modi); ?>
und dann noch in Zeile 37
<img class="gross" src="<?=$show ?>" width="30" height="30" style="border-radius:5px;">
Voila, ab jetzt wird auch das Avatar in der Box und auch im Archiv angezeigt.
Die Rahmenfarbe wird jeweils in Zeile 4 bei solid #f4d700 geändert.
verwendete ilch Version: 2.1.x
betroffene Homepage: hfr1.de
Zuletzt modifiziert von WeLo am 24.02.2024 - 20:58:07