Hi,
I have played around with CSS for a while, but usually lost interest because my updates did not generate desired results.
I think this is a basic question for a CSS guru.
I have the following:
All I want to do is apply the style sheet that I have above.
I'm getting the Verdana, but I absolutely cannot change the size of the fonts. Everything looks right to me. What am I doing wrong?
In particular, I want the question and my options to be a smaller font.
I even tried changing the "BODY" to "FORM" and no dice. Is it harder to apply CSS to forms? Also, I tried applying the style within the <FORM> tag as:
<FORM style="font-size:8pt;font-family:Verdana">
Thanks for any help you can provide.
soho34
I have played around with CSS for a while, but usually lost interest because my updates did not generate desired results.
I think this is a basic question for a CSS guru.
I have the following:
Code:
<html>
<head>
<title>Untitled</title>
<STYLE TYPE="text/css">
BODY { font-family: Verdana,Arial;
font-size: 6pt;
}
</STYLE>
</head>
<body>
<p><font face="Verdana" color="black" size="2">Please answer the following question:</font> </p>
<table cellspacing=0 cellpadding=0 border=1 width="468" height="500" bgcolor="#EABBB9" bordercolor="#D98682">
<tr width="468" height="60">
<td><img src="pp/images/aboutyou_header.png"></td>
</tr>
<tr width="520" height="440" valign="top">
<td>
<form name="aboutyou_form" method="post" action="aboutyou_landing.htm">
<table cellpadding=3 cellspacing=3 border=0>
<tr>
<td width="50%">What is your preferred method of communication?</td>
<td width="50%">
<input type="radio" name="comm_method" value="Phone" checked> Phone<br>
<input type="radio" name="comm_method" value="Email"> Email<br>
<input type="radio" name="comm_method" value="IM"> Instant Messenger (IM)<br><br>
</td>
</tr>
</table>
</form>
All I want to do is apply the style sheet that I have above.
I'm getting the Verdana, but I absolutely cannot change the size of the fonts. Everything looks right to me. What am I doing wrong?
In particular, I want the question and my options to be a smaller font.
I even tried changing the "BODY" to "FORM" and no dice. Is it harder to apply CSS to forms? Also, I tried applying the style within the <FORM> tag as:
<FORM style="font-size:8pt;font-family:Verdana">
Thanks for any help you can provide.
soho34