Text (case)

  • Thread starter Thread starter teddkilroy
  • Start date Start date
T

teddkilroy

Using a template and I am trying to figure out as to why my Titles of each
page wil not show up as upper case text. I am using FP 03 and can view in
split or code the upper case text but not when I view it in a browser.

For example:
Welcome to my Home!

is a title of one page and it comes up in a browser all in lower case. Below
is what is in code:

div id="page">
<div id="content" style="width: 412px; height: 1234px">
<p align="center">
<img border="0" src="index.1.jpg" width="431" height="208"></p>
<h2> </h2>
<h2>Welcome to my Home!</h2>
<p align="center" style="text-align:center">
<strong style="font-weight: 400">
<span style="font-family: Century Schoolbook; color: black">
 
Can you post a URL? The code you show should display the title in
mixed-case, just as you have it.

You don't mean that you want it to be all upper-case, do you? That's not
good typography - hard to read, not professional.
 
site is work in progress, not up yet. no, title should not be in either all
upper or lower case. just trying to get the first letter in each word in
upper case.
 
Using a template and I am trying to figure out as to why my Titles of each
page wil not show up as upper case text. I am using FP 03 and can view in
split or code the upper case text but not when I view it in a browser.

Sounds like the heading tags are styled to be in lower case.

If you open the style sheet for the template you might see a style for the
heading tags (h1, h2 etc) of

text-transform: lowercase;

If so just delete that line in the style definition.
 
found this in the style sheet:
text-transform: lowercase;

can I replace the word lowercase with mixcase?
 
got it, thanks Ian.

Ian Haynes said:
Sounds like the heading tags are styled to be in lower case.

If you open the style sheet for the template you might see a style for the
heading tags (h1, h2 etc) of

text-transform: lowercase;

If so just delete that line in the style definition.
 
teddkilroy said:
found this in the style sheet:
text-transform: lowercase;

can I replace the word lowercase with mixcase?

Not necessary - you can just remove that style rule "text-transform:
lowercase;" completely, and the text will display exactly as you type it.
 
Back
Top