DH Templates

Capital letters in css templates?

I have downloaded some free templates and sent them to my web space, but the headings are showing up with lower case lettering. Example: welcome, not Welcome. Is there a change I can make in the code or style sheet? New to css, so steep learning curve. http://www.freecsstemplates.org/ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Contemplate by Free Css Templates</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <link href="default.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1><a href="#">Contemplate</a></h1> <h2><a href="http://www.freecsstemplates.org/">By Free CSS Templates</a></h2> </div> <!-- end #header --> <div id="page"> <div id="content"> <div class="post"> <h1 class="title"><span>Welcome to Contemplate!</span></h1> <img src="images/img07.jpg" alt="" width="120" height="120" class="left" /> <p><strong>Contemplate</strong> is a free template from Free CSS Templates

Public Comments

  1. you need to show the source of the css in order for me to suggest edits
  2. I have looked over the code you have reposted and it still gives no indication as to what is causing it. It would really need to see the style or know which template you have downloaded. That being said, there are a number of places where it might be caused. Look for a the rule in the style sheet h1 { ... text-transform: ... } it probably reads text-transform: lowercase ;. You can either remove the lowercase and change it to none, or remove that part of the rule. It could possible be on a rule h1 span as well. Good Luck!!
Powered by Yahoo! Answers