@raull1 You have styles being applied by your theme that are setting the text color of that input to white. See this screenshot:
http://dl.dropbox.com/u/185347/Slingshot/Pictures/Screen%20Shot%202011-12-27%20at%207.59.35%20PM.png
This particular style is coming from the skin.css file of your theme. Specifically line 380 of that file where it sets the foreground color to #FFFFFF, which is white.
How does this theme work? Do you select colors/etc. and configure styles in some sort of theme options admin page?
If not and it's strictly standard CSS controlled then you need to edit this file:
http://puertaenrollable.com/wp-content/themes/striking/cache/skin.css?ver=1325033850
And find this code:
#footer input, #footer textarea, #footer .text_input, #footer .textarea {
color: #ffffff;
}
It's actually the very last line in that stylesheet. Change that color to the color you want it to be.
In the future please be sure to create your own support forum post when requesting support rather than replying to and piggybacking on another users support request. This makes things much easier to manage as most of the time even if someone else's request or problem may sound similar... a lot of the times they are unrelated and have different resolutions.
Posted 12 years ago on Wednesday December 28, 2011 |
Permalink