Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
465 views
in Q2A Core by
by
It's ironic that you didn't capitalize the first letter of your question ;)

2 Answers

0 votes
by
You need to edit question title, and use the mb_convert_case() function:
 
 
$str "mary had a Little lamb and she loved it so";
$str mb_convert_case($strMB_CASE_TITLE"UTF-8");
echo 
$str// Prints Mary Had A Little Lamb And She Loved It So
 
 

 

by
I am also interested in making first letters of every word uppercase in question title.

However, I am not quite sure how to do that exactly. Is that a piece of code that needs to be edited and if so where do I but that code ( mb_convert_case() function ) exactly.  I am very careful doing these thing, don’t want to mess up anything.


.qa-q-item-title {color:#0B3474; font-weight:bold; font-size:14px;}
    .qa-q-item-title a {color:#0B3474;}
+1 vote
by
.qa-q-item-title{text-transform:capitalize}

in css
by
Thanks, that worked very well.
...