Group colors name rainbow

For support and discussion related to templates and themes in phpBB 3.3.
Post Reply
Seol
Registered User
Posts: 49
Joined: Mon Jan 21, 2019 12:43 pm

Group colors name rainbow

Post by Seol »

Hello i see something interesting and i want to know its some extension or what to make this rainbow just for a group board https://gyazo.com/c8f4eb0a7e7fd37e97fc53f68239e240
User avatar
stevemaury
Support Team Member
Support Team Member
Posts: 52768
Joined: Thu Nov 02, 2006 12:21 am
Location: The U.P.
Name: Steve
Contact:

Re: Group colors name rainbow

Post by stevemaury »

Please post a link to a post displaying this behavior.
I can stop all your spam. I can upgrade or update your Board. PM or email me. (Paid support)
Seol
Registered User
Posts: 49
Joined: Mon Jan 21, 2019 12:43 pm

Re: Group colors name rainbow

Post by Seol »

stevemaury wrote: Sun May 22, 2022 7:38 pm Please post a link to a post displaying this behavior.
Here:
https://just4metin.ro/productii-j4m/ite ... 80000.html
User avatar
warmweer
Jr. Extension Validator
Posts: 11234
Joined: Fri Jul 04, 2003 6:34 am
Location: Van Allen Bel ... gium
Contact:

Re: Group colors name rainbow

Post by warmweer »

Spelling is freeware, which means you can use it for free.
On the other hand, it is not open source, which means you cannot change it or publish it in a modified form.


Time flies like an arrow, but fruit flies like a banana.
Seol
Registered User
Posts: 49
Joined: Mon Jan 21, 2019 12:43 pm

Re: Group colors name rainbow

Post by Seol »

warmweer wrote: Sun May 22, 2022 8:48 pm
https://just4metin.ro/styles/we_clearbl ... .css?v=3.5
see .rainbow_username
but how can i add this rainbow code just for 1 group not all users just 1 group
Seol
Registered User
Posts: 49
Joined: Mon Jan 21, 2019 12:43 pm

Re: Group colors name rainbow

Post by Seol »

Up, someone explain exactly how to make this??? with some codes or functions?
User avatar
Steve
Registered User
Posts: 1480
Joined: Tue Apr 07, 2009 7:48 pm
Name: Steven Clark
Contact:

Re: Group colors name rainbow

Post by Steve »

You need to request an extension...

I don't have time to do it. But here you are ... an idea for someone to expand on...

CSS:

Code: Select all

.rainbow_text {
  	font-size: 15px;
 	animation: rainbow_text_ani 3s linear 1s infinite;
}

@keyframes rainbow_text_ani {
  from {
    color: red;
  }
  14.2% {
    color: orange;
  }
  14.2% {
    color: yellow;
  }
  14.2% {
    color: green;
  }
  14.2% {
    color: blue;
  }
  14.2% {
    color: indigo;
  }
  14.2% {
    color: violet;
  }
}
jQuery:

Create the file: "overall_footer_after.html"

Code: Select all

<script>
// Some defaults to consider.
// find(span color: #AA0000); (admin default), the users group_coluor.
// var from template $this->user->data['group_id'], (admin default #5); the default group for this user.
$(() => {
	$('.username-coloured').addClass('rainbow_text').removeClass('username-coloured');
});
</script>
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
Seol
Registered User
Posts: 49
Joined: Mon Jan 21, 2019 12:43 pm

Re: Group colors name rainbow

Post by Seol »

That code gives rainbow to all users who have colours group added but i want just for 1 group not all
Last edited by Mick on Sat Jun 04, 2022 8:04 am, edited 1 time in total.
Reason: Removed unnecessary full quotes.
User avatar
Talk19Zehn
Registered User
Posts: 846
Joined: Tue Aug 09, 2011 1:10 pm
Contact:

Re: Group colors name rainbow

Post by Talk19Zehn »

The way I see it, an extension developer could possibly apply the event to realise your intention: Perhaps ...

:?: core.modify_group_name_string

:) The way is not as simple as you, we or other think: https://area51.phpbb.com/docs/dev/maste ... _list.html

;) Your example is linked to the (to a combination) online feature ...

Best regards, wishes.

Edit:
Express your wish in that area, if necessary.
Wanted:
viewforum.php?f=656

Or contact the author of this named extension, it might also be a possibility.
Best regards
phpBB3 Designs - My own works: Stylearea Ongray-Designs, Adventinducement-Calendar for phpBB
Post Reply

Return to “[3.3.x] Styles Support & Discussion”