Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My website is black with white/gray text. When the Google translator tool translates it, the translated text is black and it's unreadable.

How to I customize the Google Translator output to change the text color to white or gray? (Do I have to write CSS?)

Also, does it matter where I place the CSS customization?

share|improve this question

closed as not a real question by casperOne Nov 14 '12 at 21:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Yes - CSS can fix this. Add something like the following into your existing css file:

goog-te-gadget { color: white; }

(Or if that already exists, change the color:.)

share|improve this answer
Ok, so does it matter where I add this in my CSS file? – SHOPMAXAMAXIM Nov 1 '12 at 21:07
First check to see if goog-te-gadget { anything } already exists - if so, just put the color: white; bit in. If not, the position doesn't really matter; but you can start by putting it at the bottom of your file. – KatieK Nov 1 '12 at 21:11
I must have done something wrong because that didn't change the font to white so it is readable. Maybe my placement in the css file or either I need to add a symbol, bracket etc.. Lost now! I can see that the google gadget is working when I hover over my main menu I can see the text translated since my dropdown boxes are in white and that text is in black.. but not for the rest of the site. – SHOPMAXAMAXIM Nov 1 '12 at 21:39
Please post all your relevant code, or a link to your site. – KatieK Nov 1 '12 at 22:12
post you google trans-letter codes here, then i can fix it. – Sandeep Pattanaik Nov 2 '12 at 10:36
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.