Online and offline appearances (PhpBB2) profile
2 posters
Page 1 of 1
Online and offline appearances (PhpBB2) profile
TECHNICAL DETAILS
Forum version : #phpBB2
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : All members
Forum link : http://gamemunity.team-talk.net/
DESCRIPTION OF PROBLEM
Hi i use this codes for online appearances
In viewtopic_body template i switched :
and replaced to :
then i saved and i place in CSS this:
and it worked for online, and now i want to place something similar this but when someone is offline (in same position)
Forum version : #phpBB2
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : All members
Forum link : http://gamemunity.team-talk.net/
DESCRIPTION OF PROBLEM
Hi i use this codes for online appearances
In viewtopic_body template i switched :
- Code:
class="post post--{postrow.displayed.U_POST_ID}"
and replaced to :
- Code:
class="post {postrow.displayed.ONLINE_IMG_NEW} post--{postrow.displayed.U_POST_ID}"
then i saved and i place in CSS this:
- Code:
.post .name {
display:block;
}
.post.online .name {
background:url('IMAGE') 0 0;
padding-top:50px;
}
and it worked for online, and now i want to place something similar this but when someone is offline (in same position)
Re: Online and offline appearances (PhpBB2) profile
Hi @Luis Ferreira,
Change the CSS to this :
and replace the OFFLINE_IMAGE and ONLINE_IMAGE by an image URL.
Change the CSS to this :
- Code:
.post .name {
background:url('OFFLINE_IMAGE') 0 0;
display:block;
}
.post.online .name {
background:url('ONLINE_IMAGE') 0 0;
padding-top:50px;
}
and replace the OFFLINE_IMAGE and ONLINE_IMAGE by an image URL.
Re: Online and offline appearances (PhpBB2) profile
Great but i needed to change a little thing like (to be equal) :
- Code:
.post .name {
background:url('OFFLINE_IMAGE') 0 0;
padding-top:50px;
display:block;
}
.post.online .name {
background:url('ONLINE_IMAGE') 0 0;
padding-top:50px;
}
Re: Online and offline appearances (PhpBB2) profile
yes solved !
thx a lot i was breaking my head for this simple code
ps : i think you must put this in the tips on phpbb3 tutorial because i see a lot of troble about this on the forum
thx a lot i was breaking my head for this simple code
ps : i think you must put this in the tips on phpbb3 tutorial because i see a lot of troble about this on the forum
Re: Online and offline appearances (PhpBB2) profile
You're welcome. ^^ I'll try to look into that.
Topic archived
Have a good day.
Topic archived
Have a good day.
Similar topics
» Online/Offline button for phpbb2
» Online and offline profile?
» Online?offline Tutorial
» problem with jQuery online / offline
» online and offline
» Online and offline profile?
» Online?offline Tutorial
» problem with jQuery online / offline
» online and offline
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum