icon_user_offline.gif einbauen
Verfasst: 03.02.2009 06:08
in welchem template müsste ich das machen, und wie?
das .offline als css hab ich schon.....
das .offline als css hab ich schon.....
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
img_icon_user_offline =
Code: Alles auswählen
img_icon_user_offline = icon_user_offline.png*58*58
Code: Alles auswählen
img_icon_user_offline = icon_user_offline.png*Höhe*Breite
Code: Alles auswählen
.online {
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.png");
}
Code: Alles auswählen
.offline {
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_offline.png");
}
Code: Alles auswählen
<div id="p{postrow.POST_ID}" class="post <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_ONLINE --> online<!-- ENDIF -->">
Code: Alles auswählen
<div id="p{postrow.POST_ID}" class="post <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_ONLINE --> online<!-- ELSE --> offline<!-- ENDIF -->">