Official support hours: from 9 AM — 6 PM Monday to Friday (GMT +2).
The support staff may not reply on technical inquiries on weekends; all requests will be answered necessarily during working days. Reply time: depending on the complexity of your issue, the answer can be provided between a few hours up to 48 hours. In the particular instances we will notify you if extra time will be required to solve the issue.

×

Notice

The forum is in read only mode.

Username / Forum Legend Group Colors - CSS

9 years 3 months ago #34 by
Hi there,

I'm trying to change the colors for the forum, I accessed the css/kunena.skinner.css file and this is a portion of what I saw:
/* COLOR ADMINISTRATOR AND MODERATOR
----------------------------------------------------------------------------------------------- */

#Kunena .kwho-admin,
#Kunena a.kwho-admin {
	color: #FF0000 !important;
}

#Kunena .kwho-globalmoderator,
#Kunena a.kwho-globalmoderator {
	color: #800000 !important;
}

#Kunena .kwho-moderator,
#Kunena a.kwho-moderator {
	color: #0000FF !important;
}

#Kunena .kwho-user,
#Kunena a.kwho-user {
	color: #5388B4 !important;
}

#Kunena .kwho-guest,
#Kunena a.kwho-guest {
	color: #666666 !important;
}

#Kunena .kwho-banned ,
#Kunena a.kwho-banned {
	color: #A39D49 !important;
}

#Kunena .kwho-blocked,
#Kunena a.kwho-blocked {
	color: #ff0000 !important;
}

These colors are all different in the CSS file, but they all appear the same on the forum.

How can I make these changes effective?
9 years 3 months ago #35 by Eugene S.
Replied by Eugene S. on topic Re: Username / Forum Legend Group Colors - CSS
Hello hmagoutas,
There is no need to change .css file if you don't need deep customization. Colors can be changed through template backend. Just go to Components > Kunena > Template manager, then click on RND Kelegant and you may edit colors and the rest of settings within backend.
Cheers.

Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
9 years 3 months ago #36 by
Hello,

I am trying to change username colors in the forum and the group legend colors.

In the Template Manager I do not see the option to edit the group colors or apply those colors to the usernames.

Please see attached screenshot.
9 years 3 months ago #37 by shtier
Hi hmagoutas,

You are right. However, we hold on this file (css/kunena.skinner.css) in the template, but didn't include it. You need to do two simple steps:
1. Step.
Open the file /rnd_kelegant/template.php ~ 35 line
...$this->addStyleSheet ( 'css/kunena.20.css' );
// add this custom css file for your style
$this->addStyleSheet ( 'css/custom.css' );
2. Step
Add file /rnd_kelegant/css/custom.css
with your style:
/* COLOR ADMINISTRATOR AND MODERATOR
----------------------------------------------------------------------------------------------- */

#Kunena .kwho-admin,
#Kunena a.kwho-admin {
	color: #FF0000 !important;
}

#Kunena .kwho-globalmoderator,
#Kunena a.kwho-globalmoderator {
	color: #800000 !important;
}

#Kunena .kwho-moderator,
#Kunena a.kwho-moderator {
	color: #0000FF !important;
}

#Kunena .kwho-user,
#Kunena a.kwho-user {
	color: #5388B4 !important;
}

#Kunena .kwho-guest,
#Kunena a.kwho-guest {
	color: #666666 !important;
}

#Kunena .kwho-banned ,
#Kunena a.kwho-banned {
	color: #A39D49 !important;
}

#Kunena .kwho-blocked,
#Kunena a.kwho-blocked {
	color: #ff0000 !important;
}

Now you can add whatever you want here.

Thanks for the feedback. We'll keep it in the next update.
Moderators: Eugene S.

Partners