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

Changing font color in feed | Forum

Carlos Pires Corrente

Hi everyone!

I dont know if this was been talked before, but here it goes:


I have the theme Google Go, but the color of text is nearly the same background color, white. Some people can strugle to read the text...


I would like to know wich file do I have to get and file path to make this changes and put at least the text in black... It is on the main CSS? If yes, where? Wich line?


If not, can you guys please just give me a help for this?


Thank you very much! 



Darryl B Leader
Darryl B Dec 19 '15
Copy this, and paste it into your themes custom css in the admin panel. This should do what you are looking for.

div.ow_newsfeed_item_content div.ow_remark.ow_smallmargin {
    color:black !important;
}

Note. css customization is best to be done in the custom css in the admin panel. Any changes you make in cpanel will be overwritten with updates.
Carlos Pires Corrente

Quote from Darryl B Copy this, and paste it into your themes custom css in the admin panel. This should do what you are looking for.

div.ow_newsfeed_item_content div.ow_remark.ow_smallmargin {
    color:black !important;
}

Note. css customization is best to be done in the custom css in the admin panel. Any changes you make in cpanel will be overwritten with updates.

Hi!

It changes the to black some link text in feed, but not yet when someone post other text:

In the image you can view the exemple




if I put this code in css in cPanel it will be better?

Where exactly in that file?


Thanks!

Carlos Pires Corrente
Is there anyway to make it on comments as well?



Darryl B Leader
Darryl B Dec 20 '15
admin panel/ themes/customization, the click on the css tab. You can add custom css for each theme there.

Here are some of the others you mentioned. The .ow_content a below displays the username next to the comment.

.ow_remark {
    color: black;
}
.ow_content a {
    color: blue;
}
textarea.invitation, input.invitation[type="text"], input.invitation[type="password"] {
    color: black;
}


The Forum post is edited by Darryl B Dec 20 '15
Kяuncн Leader
Kяuncн Dec 23 '15
.ow_newsfeed_content.ow_smallmargin {
color: #000}
Carlos Pires Corrente

Quote from Kяuncн .ow_newsfeed_content.ow_smallmargin {
color: #000}
 

It works iperfectly!! Amazing!Thank you very much! :D 

Carlos Pires Corrente
hello! :D


Now, to finish, i only need to put comments in dark as well!..

is there anything I can change or do I need to add a code?


Thanks! :)

Kяuncн Leader
Kяuncн Dec 27 '15

body .ow_comments_content.ow_smallmargin {

color: orange}

The Forum post is edited by Kяuncн Dec 27 '15
Carlos Pires Corrente

Quote from Kяuncн

body .ow_comments_content.ow_smallmargin {

color: orange}


You are an autenthical life saver! :D Thanks!!!!

Kяuncн Leader
Kяuncн Dec 28 '15
your welcome.