Easiest way is to use a style sheet.  If you want to have all the INPUTS on
a page to follow the same style, then try this:


<style>
                SELECT
        {
                color: black;
                font-family: arial;
                font-size: 8pt;
                font-weight: normal;
                border : Fuchsia;
                text-align : right;
                background-color : Silver;
                border-width : 0;
                line-height : 12px;
                padding-bottom : 0px;
                padding-top : 0px;
        }


                INPUT
        {
                color: black;
                font-family: arial;
                font-size: 8pt;
                font-weight: normal;
                text-align : right;
                background-color : Silver;
                width: 51px;
                border-width : 0;
                line-height : 12px;
                padding-bottom : 0px;
                padding-top : 0px;
        }
</style>

If you wanted only some of the boxes to change, then name the style
something like
.SmallInputBox
and then in the INPUT tag use a CLASS="SmallInputBox" option - be sure to
get the case
correct!

-reed



------------------------------

Date: Wed, 15 Aug 2001 00:28:44 -0700
From: Gonzo Rock <[EMAIL PROTECTED]>
Subject: Form Formatting
Message-ID: <[EMAIL PROTECTED]>

A lame question but hoping someone knows straight away.

I am trying to shrink the size of <input Text boxes etc... and maybe control
the font used... but can't seem to figure it out.

Anyone with a hint for me?

Thanks,

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to