- Forum
- Products for Joomla
- Kunena 4.x templates
- RND Kelegant
- Username / Forum Legend Group Colors - CSS
Username / Forum Legend Group Colors - CSS
-
Topic Author
- Visitor
-
9 years 3 months ago #34
by
Username / Forum Legend Group Colors - CSS was created 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:
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?
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?
- Eugene S.
-
- Offline
- Administrator
-
9 years 3 months ago #35
by Eugene S.
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
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.
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!
-
Topic Author
- Visitor
-
9 years 3 months ago #36
by
Replied by on topic Re: Username / Forum Legend Group Colors - CSS
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.
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.
- shtier
-
- Offline
- New Member
-
Less
More
- Posts: 15
- Thank you received: 1
9 years 3 months ago #37
by shtier
Replied by shtier on topic Re: Username / Forum Legend Group Colors - CSS
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 line2. Step
Add file /rnd_kelegant/css/custom.css
with your style:
Now you can add whatever you want here.
Thanks for the feedback. We'll keep it in the next update.
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' );
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.