Forum Moderators: not2easy
I'm currently working on a client's site and the content given to me has all headers in upercase lettering and I am used to only capitalizing the first letter of words in headers, except for and, to, a and other operator type words.
My question is, what is the proper way and should I alter the client's text to conform if the proper way is to NOT use all caps?
e.g. in html you have..
<h1>A Very Important Header</h1>
<h2>Slightly less important header</h2> and then in your CSS you do..
h1, h2 {
text-transform: uppercase;
} Alternatively you could specify
capitalize which does first letter caps if you want to do this the other way round and keep the caps for search engines to see.