You are not connected. Please login or register
Page 1 of 1 • Share •
You are not connected. Please login or register
This probablly isn't in the right place. >.<
I always wanted this for a very long time. On Invision Forums you get a fancy message that reads:
You are not connected. Please login or register
Here is an example
http://demo.nicetheme.com/forum?theme_id=172799
I would like to do this on my phpBB2 forum. But to have the bar that says this at the very top of the page. I would also like the bar to be the same color in the theme.
I want mine to say: You are not connected. Please Sign On or Move In
Is this possible, thanks. =)
link to forum: -----
I always wanted this for a very long time. On Invision Forums you get a fancy message that reads:
You are not connected. Please login or register
Here is an example
http://demo.nicetheme.com/forum?theme_id=172799
I would like to do this on my phpBB2 forum. But to have the bar that says this at the very top of the page. I would also like the bar to be the same color in the theme.
I want mine to say: You are not connected. Please Sign On or Move In
Is this possible, thanks. =)
link to forum: -----
Last edited by Suuki on Sun 4 Dec - 1:50; edited 1 time in total

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
Hello,
You can't change the wording for this asits set by Forumotion. I'm pretty sure you can do this by going to display // Generalities
You can't change the wording for this asits set by Forumotion. I'm pretty sure you can do this by going to display // Generalities

MrMario- Helper

-

Posts: 22290
Language: English
Location: United States of America
Points: 74049
Join date: 2008-06-10
Re: You are not connected. Please login or register
thanks Mr.Mario but that's the homepage message. I'm asking for a code for a long blue bar on top. With the words You are not connected. Please Sign On or Move In, which shouldn't be very hard? It's just a clickable link I thought?
This is actually available for Invision, I just want one for phpBB2, of course my links will say something different.
Waiting for more help
This is actually available for Invision, I just want one for phpBB2, of course my links will say something different.
Waiting for more help

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
That's the same thing that's on that forum version.

MrMario- Helper

-

Posts: 22290
Language: English
Location: United States of America
Points: 74049
Join date: 2008-06-10
Re: You are not connected. Please login or register
MrMario wrote:That's the same thing that's on that forum version.
What?
Display>Hompage>Generalities
leads to the Homepage message. O.o
that and the quick log in.
I want a bar at the very top of my forum, above the logo and everything ,that says:
-------------------------------------------------------------------------------------------
You are not connected. Please Sign On or Move In
-------------------------------------------------------------------------------------------

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
That is it! Thats the only way to get it!

MrMario- Helper

-

Posts: 22290
Language: English
Location: United States of America
Points: 74049
Join date: 2008-06-10
Re: You are not connected. Please login or register
I have quick log in. It's under the navigation, it looks different, it is just the log in fields and not text, I want to wait for someone who can get the code for me. 
thanks anyway
thanks anyway

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
Post the information you want in the homepage message. You can make it a clickable link.
Helpful Links
Forum Rules
Lost Founder's Password
(Do not send me a PM about resetting your password.
Send a PM to one of the listed staff members in the link.)
Tricks & Tips
Frequently Asked Questions
How To Report A Forum
Forum Rules
Lost Founder's Password
(Do not send me a PM about resetting your password.
Send a PM to one of the listed staff members in the link.)
Tricks & Tips
Frequently Asked Questions
How To Report A Forum
Re: You are not connected. Please login or register
how can this me above the logo though. :3 and only to guests.
thanks.
thanks.

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
That's because it's a different version. What you want is for another version. Sorry but that's the only way.

MrMario- Helper

-

Posts: 22290
Language: English
Location: United States of America
Points: 74049
Join date: 2008-06-10
Re: You are not connected. Please login or register
MrMario wrote:That's because it's a different version. What you want is for another version. Sorry but that's the only way.
MrMario, I don't think your reading it carefully, I don't want the exact same thing, but for myself to make it.
@slg
Can I post the code somewhere, maybe in a widget (so I can have guest view only)...and have a code to make the content at the top of the page.

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
If You Want To Hide It From Guest Or Change The Text When A Member Has Success Login Into Forum. You May Try Code Using If-Else Statement On JQuery. I Cannot Provide The Code Because I Don Know How To Code Using JQuery.
Re: You are not connected. Please login or register
Yes me either. That is why I must wait. XD
This is defiantly possible, but I just realized I never needed this...I must be really tired....
This is defiantly possible, but I just realized I never needed this...I must be really tired....

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
Go to the templates / general / overall_header / find the logo and paste this code above it:
and in the CSS add this:
- Code:
<!-- BEGIN switch_user_logged_out -->
<div id="userlinks" class="not-connected clearfix">
<span class="guest">You are not connected.</span> <span>Please <a href="/login"> sign in </a> or <a href="/register> move in</a></span>
</div>
<!-- END switch_user_logged_out -->
and in the CSS add this:
- Code:
#userlinks.not-connected {
background-color: #ECF3F7;
border-bottom: 1px solid #CADCEB;
font-size: .9em;
padding: .5em;
text-align: center;
}
Re: You are not connected. Please login or register
Well, thank you. XD But I realized I never even needed this. tans anyway, ill use it one day if I do need it. :3

Suuki- Forumotion Member
- Posts: 419
Language: English, Japanese (learning lots) :3
Points: 513
Join date: 2011-01-16
Re: You are not connected. Please login or register
| Topic Solved & Locked |

Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum

Home


by Suuki on Sat 3 Dec - 15:48









