Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
224 views
in Q2A Core by
how to Capitalised words of title while i write in small letters??

1 Answer

0 votes
by
edited by

Use the CSS property text-transform for capitalizing words. Add the property to the classes qa-q-item-title and qa-main-heading to capitalize question titles in both question list and question view.

.qa-q-item-title, .qa-main-heading {
  text-transform: capitalize;
}

Note that this will capitalize all words rather than doing correct capitalization (example: "foo the bar" would be rendered as "Foo The Bar" instead of "Foo the Bar" with a lowercase "the").

by
You are right bro, I think it's affect my website's SEO. Thank you for your solution...  love you...

Welcome to the Q&A site for Question2Answer.

If you have a question about Q2A, please ask here, in English.

To report a bug, please create a new issue on Github or ask a question here with the bug tag.

If you just want to try Q2A, please use the demo site.

Categories

...