Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Font Query 1

Status
Not open for further replies.

redbay

Technical User
Oct 13, 2003
145
0
0
GB
I have a CSS attached to my page that works fine but when i change a text field from single line to multi line then text changes to Times New Roman and i am unable to change it.....any ideas
 
Post some of the relevant (CSS)-code please....

Don't eat yellow snow!
 
body {
font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
background-color: #FFFFCC;
}

td {
font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
}

th {
font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
}h1 {
font-size: 120%;
}h2 {
font-size: 80%;
}
 
They are all tag styles try using this
Code:
body {
    font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
    background-color: #FFFFCC;
}

td {
    font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
}

th {
    font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
}
h1 {
    font-size: 120%;
}
h2 { 
    font-size: 80%;
    }

.textfieldsingle {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

Cheech

[Peace][Pipe]
 
Hi

Copied tis exactly and the font is still times new roman???
its Ok in a single line text field but not multi line
 
select the textfield and set its class to textfieldsingle

[Peace][Pipe]
 
In the clas it only shows None, Rename & manage Styles?
 
Sorry Cheech i had not put the . in front of textfieldsingle & now it works.
Thanks for helping again!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top