Reed, this is very nice. Thanks for sharing this code. We have been looking
for a similar solution that works in Netscape also. Do you know if this is
possible? We have found many solutions but none that we can get working in
NS 4.5+

I appreciate any input you can share.. thanks in advance.

Tony Gruen
sfnetworks



-----Original Message-----
From: Reed Powell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 15, 2001 9:12 AM
To: CF-Talk
Subject: Subject: Form Formatting


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/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to