JD
(@jdcutter)
I took a quick look and don’t see any white text hidden on the page. Could you highlight where it is? The Attendee info is currently white text on teal.
-
This reply was modified 7 years, 5 months ago by
JD.
Thanks for taking a look, JD.
Upon diving deeper, I think the issue is with the plugin “Event Tickets Pro”. You’ll see in this when you click on the tickets (as though you are going to purchase). When you fill out your name, email, etc., you’ll see those form fields are white on white.
Using developer tools with Chrome, I see that I can make the change in the plugin CSS, but when I do, it doesn’t make a difference. 🙁 So, I’m wondering if there is another piece of CSS somewhere that I should be looking at.
Nothing like a teeny issue to make one cross-eyed. LOL
JD
(@jdcutter)
On my screen they are actually white on blue. Not a problem though I’m sure I can provide you with some code to correct that…
In your sites styles css (this can be found through wordpress in Appearance > Editor) add the following code:
.tribe-events-tickets input[type=date], .tribe-events-tickets input[type=datetime-local], .tribe-events-tickets input[type=email], .tribe-events-tickets input[type=month], .tribe-events-tickets input[type=number], .tribe-events-tickets input[type=password], .tribe-events-tickets input[type=search], .tribe-events-tickets input[type=tel], .tribe-events-tickets input[type=text], .tribe-events-tickets input[type=time], .tribe-events-tickets input[type=url], .tribe-events-tickets input[type=week], .tribe-events-tickets select, .tribe-events-tickets textarea {
background: rgba(0,0,0,0.1);
color: rgba(0,0,0,1);
}
Just in case you’re not familiar with CSS the big chunk at the top is your classes, ids and tags that govern the background color. The parts between the {} are the background color and text color changes you’ll be altering. RGBA is the color profile I generally work in with CSS. I hope this helps.
For crying out loud. That was the change I was making in the plugin CSS (the blue background). I needed to clear cache, maybe? I see it now.
I can’t thank you enough for your help! You rock!!
Glad to hear you’re sorted out, and thanks to @jdcutter for helping others 🙂