form field color

A

Anna

Hi,

Is there a way for me to change the way a form field looks? I can't seem to
find it... For instance, I wish to change the background color from white to
something else...

Or is there an add-in that's recommended when it comes to building a form?

Many thanks,

Anna
 
J

Jon Spivey

Hi Anna,
you can change with CSS, eg
<style type="text/css">
..txt{
background-color: #f00;
}
</style>
and then
<input type="text" class="txt"...
you can experiment with different font borders etc or if you wanted to get
fancy you could even use a background image

Jon
Microsoft MVP - FP
 
F

FrontPageForms

Anna,

Double click the field in question.
Click Style
Click Format
Click Borders
then Shading

This is where you would select background color or image.
You can control the font as well through Format.

Mike,
http://FrontPag.Bizland.com
Form Tutorials & Form Script Examples
 
Top