We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Change color of Head-title | Forum

Topic location: Forum home » Development » Themes
Andy Power
Andy Power Jan 24 '17
Hi,
as you see I've got a problem with the head-menu, when clicking on it.
Members is as grey as the background.

How do I change that?!
Attachments:
  f4.PNG (8Kb)
Darryl B Leader
Darryl B Jan 24 '17
There are three color settings. Normal, Hover, and Active. I would think that some of the settings would be in your theme customization in the admin panel. You can use inspect element to find elements that you want to change.

.ow_main_menu li a {
    color: your color;
}
.ow_main_menu li.active a {
    color: your color;
}
.ow_main_menu li a:hover {
    color: your color;
}