Hello again Spencer 🙂
The default styles that I think you are trying to override are these:
input[name*="tribe-bar-"]::-webkit-input-placeholder {
color: #5f5f5f;
font-weight: normal;
font-style: italic;
line-height: 1.3;
}
input[name*="tribe-bar-"]:-moz-placeholder {
color: #5f5f5f;
font-weight: normal;
font-style: italic;
line-height: 1.3;
}
You’ll notice that our selectors have just a bit more CSS specificity than what you were experimenting with, this is so that ours do not alter the other placeholder text in your theme. If you match our selectors in CSS that is enqueued later, you’ll be able to style these however you see fit.
Let us know if this works for you!