Text color needing changed. (FP$ REWARD)

Dfarmer2001

Paragon
Joined
Jul 22, 2014
Messages
1,578
Reaction score
369
FP$
1,783
On my site at www.referraldirectoryforum.com, when you go to try to select a text font in a new thread, or even make font text bigger or smaller you cannot see the options because the text is white and so is the dropdown background.
If I could change the text color to Black that would be nice, but I do not know where to change that at. It would be nice if someone could help me with this and soon! I will toss out an FP$ reward! 🙂

Thanks,
Devin
 
I can do this for you. Would grey be an okay color? That seems to be the best for me when I debug it. Since some of your font on the board shares the same CSS class as the editor, you'll either need to find a suitable color for both, or create a new standalone class in your CSS 🙂

If you want to go with the first option, find global.css, and find:

Code:
table {
color: #ffffff;
font-family: verdana;
font-size: 12px;
}

And change it to:

Code:
table {
color: grey;
font-family: verdana;
font-size: 12px;
}

If you want to go with the second option, I can try to see what is possible 🙂
 
C said:
I can do this for you. Would grey be an okay color? That seems to be the best for me when I debug it. Since some of your font on the board shares the same CSS class as the editor, you'll either need to find a suitable color for both, or create a new standalone class in your CSS 🙂

If you want to go with the first option, find global.css, and find:

Code:
table {
color: #ffffff;
font-family: verdana;
font-size: 12px;
}

And change it to:

Code:
table {
color: grey;
font-family: verdana;
font-size: 12px;
}

If you want to go with the second option, I can try to see what is possible 🙂

Thank you so much! That worked. I am going to send you 200 FP$ for the reward! I also sent you some PM with some offers, and different things. I could use some more of your amazing help!
 
devin farmer said:
C said:
I can do this for you. Would grey be an okay color? That seems to be the best for me when I debug it. Since some of your font on the board shares the same CSS class as the editor, you'll either need to find a suitable color for both, or create a new standalone class in your CSS 🙂

If you want to go with the first option, find global.css, and find:

Code:
table {
color: #ffffff;
font-family: verdana;
font-size: 12px;
}

And change it to:

Code:
table {
color: grey;
font-family: verdana;
font-size: 12px;
}

If you want to go with the second option, I can try to see what is possible 🙂

Thank you so much! That worked. I am going to send you 200 FP$ for the reward! I also sent you some PM with some offers, and different things. I could use some more of your amazing help!

Glad I could help! I'll go ahead and marked this as solved. 🙂
 
Back
Top Bottom