The date picker font for the month is white, as is the background, so it can't be seen at all. How do I adjust so that font is contrasted from background?
The date picker font for the month is white, as is the background, so it can't be seen at all. How do I adjust so that font is contrasted from background?
That's not the default styling. Something in your theme is overriding the defaults. Since you didn't post a URL to your form page, I can't really tell you what. Please post a URL to your form and we'll be happy to look at it and point you in the right direction.
I made a test form here:
So it looks like it's picking up the body color of white from your stylesheet. So you could drop this into your theme's stylesheet:
[css]
table.ui-datepicker-calendar thead {
color: black;
}
.ui-datepicker-title {
color: black;
}
Will try it. Thanks!
This didn't work. I'm using Thesis, and I dropped it into the custom.css file
Looks like you may need to use better CSS inheritance to override your theme styles. Try this instead.
[css]
html body.custom div#ui-datepicker-div.ui-datepicker {
color: #000 !important
}
test screenshot: http://i.imgur.com/kv7Cl.png
It looks like you've got some other layout issues too. The datepicker uses the default jQuery UI styles so it's not Gravity Forms specific styling. If you're still having issues with it, you'll probably want to approach the Thesis support team for more guidance.
I will try this later today. Do you do any custom work? I want the form submissions entered into my mailing list MySql database. Should be pretty simple.
We have a job board you can post on for custom work:
The CSS you gave me does not work. The month names still show white on white. I know you say I have layout issues, but the calendar is the only thing on the page? What should I do?
Yeah, it works if you implement it properly. Check out the screenshot I included in my previous post.
test screenshot: http://i.imgur.com/kv7Cl.png
Where exactly did you place your CSS rule?
I placed it in my custom.css file.
I asked the guys at Thesis and they gave me this:
.ui-datepicker-div, .ui-datepicker-inline, #ui-datepicker-div {color:#000;}
And did that work for you?