# Help with a Form

**URL:** https://forum.kirupa.com/t/help-with-a-form/22902
**Category:** programming
**Created:** [June 10, 2003, 1:02pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902 "2003-06-10T13:02:17Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Ryan](https://avatars.discourse-cdn.com/v4/letter/r/a8b319/32.png) [@Ryan](https://forum.kirupa.com/u/Ryan)
#### Post date: [June 10, 2003, 1:02pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902/1 "2003-06-10T13:02:17Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 10, 2003, 7:21pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902/2 "2003-06-10T19:21:23Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 10, 2003, 7:53pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902/3 "2003-06-10T19:53:21Z")

</div>

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](http://www.outfront.net/tutorials_02/adv_tech/funkyforms1.htm)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 10, 2003, 8:08pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902/4 "2003-06-10T20:08:16Z")

</div>

I stand corrected 🙂

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

```auto
<*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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 12, 2003, 8:42pm UTC](https://forum.kirupa.com/t/help-with-a-form/22902/5 "2003-06-12T20:42:05Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 13, 2003, 4:53am UTC](https://forum.kirupa.com/t/help-with-a-form/22902/6 "2003-06-13T04:53:22Z")

</div>

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

```php

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

```
