solved No Land for Small Words - No ifs, buts, and ors in Lowercase?

researchcooperative
@researchcooperative
10 years ago
694 posts
Is it possible to ask TITLES to accept upper and lower case?

Any settings for this, or is Jamroom...

No Land for Small Words
no ifs, buts, and ors in lowercase

??




--
PJ Matthews, Kyoto
Migrated from Ning 2.0. Now at Jamroom 6 beta and using Jamroom Hosting for The Research Cooperative (researchcooperative.org)

updated by @researchcooperative: 05/08/15 02:20:52PM
brian
@brian
10 years ago
10,149 posts
Do you mean header tags - i.e. h1, h2 etc?

Most of these are capitalized using the text-transform:capitalize CSS tag - you can remove that or turn it off if you would prefer to not capitalize.

Let me know if that helps.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
researchcooperative
@researchcooperative
10 years ago
694 posts
Thanks.

My plan is to go as far as I can without touching CSS, just to develop the basic organisation of my site, and then pay someone to make any CSS changes that are needed.

I should start making a list...


--
PJ Matthews, Kyoto
Migrated from Ning 2.0. Now at Jamroom 6 beta and using Jamroom Hosting for The Research Cooperative (researchcooperative.org)
michael
@michael
10 years ago
7,789 posts
When your ready to change it its this piece of CSS:

h2 {
    display: inline;
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}

remove text-transform: capitalize; and your titles will stay as you entered them.