vanilla192
03-14-2005, 04:30 AM
Hey guys, I was wondering how to change the font for the questions (not the answers) in an email form to match the rest of your site. I think its probably something to do with the css but i not sure, can you guys help me out?
Thanks, vanilla192
kittycat
03-14-2005, 04:34 AM
Inside the input/text box?
Add this to your CSS
input, textarea {
font-family: font;
font-size: ##px;
color: #colour;
}
Change it to what you want. You can also change border/background.
If it's just regular text on the page the font stuff goes in the body section, unless it's in a table then you may need to make a table, td sectoon
vanilla192
03-14-2005, 04:43 AM
Sorry if i was unclear, i meant changing the font of the actual question that is posted not the font of the text input box
thanks again, Vanilla192
MaGiCSuN
03-14-2005, 06:31 PM
body {
font-family: font;
font-size: ##px;
color: #colour;
}
just like that. Or if it's in a table then:
tr, td, table {
font-family: font;
font-size: ##px;
color: #colour;
}
next time you can just use the tag in the css. Meaning if you want to change a TABLE tag (like borders etc) you can add this to your css:
table {
border: 1px solid black;
}
You can do this with all tags most of the time.
Love,
Mirna