PDA

View Full Version : Help with a Form



Ryan
June 10th, 2003, 10:02 AM
i was wondering how to get rid of the borders on form objects, (mostly text boxes.) please give me some advice,

thanks in advance.

ryan

brooklyniteOne
June 10th, 2003, 04:21 PM
uncheck the box next to the "< >" enable html option in your properties panel ;) its on the right of the HTML optin in MX. ;)

[Edit] also this is not server side scripting so this is posted in the worng place.. mods please move this ..lol

Jubba
June 10th, 2003, 04:53 PM
I don't think he's talking about Flash. Its a CSS question. :)

Ryan: You would use CSS. Do you have DreamWeaver? beacuse that pretty much does it for you.

This will get you started: http://www.outfront.net/tutorials_02/adv_tech/funkyforms1.htm

brooklyniteOne
June 10th, 2003, 05:08 PM
I stand corrected :)

The following code should get you on the right path. Just tweak away.


<*style type="text/css">
input { padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-style: none; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; font-weight: bold}
<*/style>



Remove the astericks (*) in the style tags

Ryan
June 12th, 2003, 05:42 PM
ahh, thank you. thats exactly what i was looking for. thanks for the help. and im not using dreamweaver. i have it but havnt had the time to learn it yet, so it sits unnoticed on my computer. any suggestions on how i could get an idea of where to start on using it? they want like 200 dollars for a class on it, and thats normally very general. well, anyhow, thank you.

Jubba
June 13th, 2003, 01:53 AM
open up dreamweaver and go to Text > New CSS

and define a custom tag... name it "myTag" without the quotes..

Go to border, and set your properties how you want them to be...

then in the HTML code for the form it would look like this



<input class="myTag" type="text" size="15" name="title">