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

How to change the fontcolor of bottom menu? (cant find it in the CSS) | Forum

Topic location: Forum home » Support » General Questions
Paul
Paul Oct 18 '15

So the above is what I want to change..


I already tried to add a colorcode to this section:


But this doenst make any difference. Can anyone point me in the right direction?

The Forum post is edited by Paul Oct 18 '15
Darryl B Leader
Darryl B Oct 18 '15
Try this. put it in the custom css in the admin panel. Made a post edit. Forgot to add the semi colon after the color.

.ow_footer_menu a{
color: your color;
}
The Forum post is edited by Darryl B Oct 20 '15
Taissa Team
Taissa Oct 21 '15
Paul, have you managed to fix your issue?
Paul
Paul Oct 21 '15
No, thanx for the effort Darryl, but still the same color..
Darryl B Leader
Darryl B Oct 21 '15
What is your theme? The above would work on simplicity. I found that on my Venus theme it is
.ow_footer a{
    color:your color;
}
instead of .ow_footer_menu a{
I checked a few other themes that I have one is div.ow_footer_menu a{
The way I find this is by using Inspect Element.
1. right click on the item you want to look at.
2. choose inspect element from the pop up menu.
3. usually the code from the area that you clicked will be highlighted. The corresponding css is in a box to the right.
4. You can click the select arrow to the left of the inspect element header box; then select any element on the page to make sure you are displaying the right one.
5. You are most likely looking for a variant of one of the above that I have found.

The cool thing about inspect element is that you can try css changes without them being permanent.
The Forum post is edited by Darryl B Oct 21 '15
Darryl B Leader
Darryl B Oct 21 '15
p.s. If you had a website link, where I could see your footer, I could get you the exact code to change.
The Forum post is edited by Darryl B Oct 21 '15
Darryl B Leader
Darryl B Oct 21 '15
Based on the screen shot. It looks like you are using the Darklets theme. If that is the case, it would be this.

.ow_footer a {    color: #0091a9;}
This is what I found with Inspect Element. I changed the color to make sure it was the correct element