Web format question

rkrause

Registered User.
Local time
Today, 12:50
Joined
Sep 7, 2007
Messages
343
I am making a change to a website. the way the headings are set up is that there Capitalized so like this "I love MyServer" The heading in the CSS is set to be like that. does anyone know how to just with in the html code to change it to this "I love myServer" the main goal is to get the m lowecase in MyServer.

Thanks
 
can you post your css code? Im interested in seeing how they are doing it especially since I would think it would capitalize "love" also...

"I love MyServer"
 
My appologies, you are right i had a typo it is "I Love MyServer" Sorry about that.
 
I would think there is some type of proper case going on in the css for that heading..

do you see anything that has a Pcase("i love my server") in it?
 
#content #secondaryContent h1 {
margin: 0px;
padding: 4px 5px 4px 10px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background: url(../images/h1.gif) repeat-x top;
text-transform: capitalize;
border: none;

heres the code from the css
 
This is causing the My to be capitalized

text-transform: capitalize;

take that out and the text will stay as you typed it
 
Hi rkrause.

Well first of all you have a made one css class on this class you have to add number of class where you have to define your feature like color, pixel,font. And then you have to call this css class in to your button event. Hope this will help you out.
 

Users who are viewing this thread

Back
Top Bottom