Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
395 views
in Q2A Core by

I want to make the first letter of tags titles capital letters for example: capitlize-begining-of-tag-letters will become Capitlize-Begining-Of-Tag-Letters. I ask because I dont use Recent questions tagged I just have it as the keyword name and it looks kindof ugly in small letters.

1 Answer

+1 vote
by

This is very simple.

In Snow theme qa-style.css file add text-transform:capitalize

.qa-tag-link, .qa-widget-side .qa-q-view-tag-item, .qa-widget-side > div > a {

text-transform:capitalize

}

by
edited by
Hey thanks for replying but I need it for 3 of your themes and for the classic theme. And I'm trying to make it display in the window text so when its in the search engine the letters are capital also not just for the links. Example: Recent Questions Tagged Capitalize Beginning Of Tag Letters so I can change it to display: Capitalize Beginning Of Tag Letters. In the window.

Orange Candy
Green Leaf
Pixel and Grain Light
Classic
by
I didn't get you exactly what you are looking for but if you are fine with css solution than you can use text-transform:capitalize attribute for anything so find the class using inspector and apply this attribute to that class and it should work.
by
Sorry i must not be explaining properly. I want http://www.question2answer.org/qa/tag/capitlize-begining-of-tag-letters to show capitalized titles.
Instead of under cases like: Recent questions tagged capitlize-begining-of-tag-letters

I want it to display: Recent Questions Tagged Capitlize-Begining-Of-Tag-Letters
...