Hi @pits-webdesign,
I am not able to repeat this on my end. When I go the page on your site, I can’t see the idea creation form, probably due to the board settings. Can you please adjust this so I can see. Also are you using the pro version of the plugin? As this should just be a feature of the pro version. Thanks,
Goodmorning,
We use the basic version. Check this url please https://youth-r-well.com/forum/ . Ideas are open for unregistered people, so i think you can check it now.
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
Thanks, i added some extra css also for the text field. It works fine now!