The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Some Problems!

2 posters

Go down

In progress Some Problems!

Post by RossB96 August 11th 2011, 10:09 am

Hi there, got some problems and hopefully you can help me!

Firstly, i have usernames and usergroups with a glow around them, as seen below:
Some Problems! D156533f59a05c6482a90c952d238904
And i was wondering can i type someones username like that in a post?

Secondly, i was wondering if there is anyway to get a members group to show up at the side under their name.
Some Problems! Ed3ba21562e979f5ad58387c9d9a00a4
I already have other members ranks show up who are not in groups, but if they are i would like them to be replaced by their group name. Is there any way to do this?

Lastly, i would also like the members group and rank information to show up on their profile. Is this possible?

If you have any answers to the above questions please post below, step by step thanks!

Forum address is [url=extreme-gaming.forumotion.co.uk]here.[/url]
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 11th 2011, 10:30 am

Admin

Admin

You'd need to write it like a table that would be to complicated

Code:
[table border="0"]
[tr]
[td style="text-shadow: 0 0 0.5em white, 0 0 0.5em white, 0 0 0.5em white;color:red;font-weight:bold;"] Admin[/td]
[/tr]
[/table]

Not sure where are you aiming at. If grup adding is not based on the number of posts you can make special ranks (written only if you want), call them as same as grups and assigning to member when assingning them to grups.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 11th 2011, 10:52 am

Thanks Nera, for managing to solve my first problem, any suggestions to the rest?
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 11th 2011, 10:56 am

Just make ranks and add no photos to them, make them special ranks, than when you insert the member to the grup add him the rank to. It would be like only written what group is he. Like this

Some Problems! 7U1L

See Grupa 1 written there?
That is what you are searching, right?
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 11th 2011, 11:14 am

Nera. wrote:Just make ranks and add no photos to them, make them special ranks, than when you insert the member to the grup add him the rank to. It would be like only written what group is he. Like this

Yes, i see what you mean. I will do that and just another question, see when the rank shows up on the side, can you make it the colour the corresponding group is?
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 11th 2011, 11:17 am

Wehn you are adding rank title and it with HTML tags, like this, just your own colors.
Code:
<font color="red"><strong>Grup 1</strong></font>

Some Problems! 7U3N
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 11th 2011, 12:49 pm

Nera. wrote:Wehn you are adding rank title and it with HTML tags, like this, just your own colors.
Code:
<font color="red"><strong>Grup 1</strong></font>

Some Problems! 7U3N

That is exactly what im looking for, but one thing! - Is there anyway i can get this to glow?

P.S. - Do i post the code into the rank title area?
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 11th 2011, 1:02 pm

Where do you all get these questions/ideas Rolling Eyes loul

Try this, this goes to CSS

Code:
.glow {
    color: red;
    font-weight: bold;
    text-shadow:  0 0 0.5em white, 0 0 0.5em white, 0 0 0.5em white;
}

This to rank title
Code:
<span class=glow>Grup 1</span>

Some Problems! 7UfS
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 11:27 am

How do i add people to the ranks? :S
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 12th 2011, 11:29 am

Same as usually http://i.imm.io/7WEb.png
How do you mean.

Than you hit someones profile on the board > Press Profile > you will arive in AP on their profile board, scroll to bottom and assign them with the special rank.

It's only a word. It wont give them powers.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 11:40 am

See how the above code (to get ranks to glow), can i use that multiple times?
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 12th 2011, 11:44 am

If you add this to all the ranks

Code:
<span class=glow>RANK HERE</span>

That you need to add it only once in CSS (the CSS code).



But if you want a different glow on a different rank than change the word glow when adding it to and other rank like this
Code:
<span class=shine>Grup 2</span>

And start your CSS rule like this

Code:
.shine {
text-shadow: bla bla bla;
}

It will have a different glow than. You can aslo add BG pictures to it or what ever you want.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 11:51 am

I can change it to any word? EG: glow, shine,
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 12th 2011, 11:59 am

You can even write nera lol!
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 12:05 pm

i will loul lol!
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 12:35 pm

Nera,

See when tying to make usergroups glow on the legend you use this code:

Code:

a[href="/g2-Management Team"] {
    text-shadow: 0 0 0.2em white, 0 0 0.2em white, 0 0 0.2em white;
}

With the 'g2', being changed to the order of the group and then changing the group name after it.

I am doing this but it isn't working!

Am i doing anything wrong?!
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 12th 2011, 12:36 pm

You need to show me your forum so I can see for that, sorry.
You are probably misstyping hrefs.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Some Problems!

Post by RossB96 August 12th 2011, 12:44 pm

Okay, - Forum Link
avatar
RossB96
Forumember

Posts : 64
Reputation : 0
Language : English

Back to top Go down

In progress Re: Some Problems!

Post by Nera. August 12th 2011, 12:54 pm

/g2-management-team
/g3-honorary-admin
/g6-project-manager
/g17-advisory-team
/g10-recruitment-team
/g7-captain
/g5-event-manager
/g11-donator
/g12-donator
/g14-ps3
/g15-pc
/g16-member

Use these, should work.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum