The word or phrase that a user searches is showing up as all lowercase in the search results even though the CSS has text-transform set to none. It appears the text is getting converted and outputted to lowercase in the HTML itself. Is there a way to keep any uppercase letters as uppercase in the search results?
the CSS formatting for this is empty in the wpforo style.css
#wpforo # wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-sword {}
probably formatted your Wordpress theme here
but you can add the following code to the custom code
#wpforo #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-sword {
text-transform: none !important;
}
Dashboard > Forums > Settings > Style (custom css)
Hi, the actual HMTL has already turned the word lowercase, though. The HTML is uppercase in the original post, but the HTML is lowercase in the search results. It's not the CSS affecting it.
I see what's happening. If I search for "Test the searchform here" it keeps the HTML search results uppercase, but if I search for "test the searchform here" it converts the HTML to lowercase. Is there a way for the search results to reflect the original post regardless of how the user enters the search string?
Any answers to this?