Hi @pits-webdesign,
Oh I see what you mean. This isn’t actually being done by our plugin, this is being done by CSS by your nonprofit theme. In your theme you have CSS like:
input:not([type]), input[type=”text”], input[type=”password”], input[type=”date”], input[type=”datetime”], input[type=”datetime-local”], input[type=”month”], input[type=”week”], input[type=”email”], input[type=”number”], input[type=”search”], input[type=”tel”], input[type=”time”], input[type=”url”], input[type=”color”], textarea {
border-color: #d7d7d7;
box-shadow: none;
background: rgba(242,242,242,0.2);
text-transform: capitalize;
}
It’s this last part which is causing the issue: text-transform: capitalize;
So what you could do is put some custom CSS on your site:
.ideapush-form-idea-title {
text-transform: none !important;
}
and this will resolve the issue. You can even put the custom CSS into the design tab in our plugin settings if you aren’t sure how to implement custom CSS. Thanks