Textboxes and CSS

Hello guys! :wave:

Let me explain. I'm a gameshow freak, right, so I went to a website where I could play one of my favourite games. That's where I saw some interesting looking Textboxes.
I'm just curios to know how they are made, is it with Flash, CSS or something else
Here's the URL to the page I'm talking about:
http://www.mnet.co.za/mnet/shows/DealOrNoDeal_Game_RegOrLogin.asp
[431 byte] By [HanneSThEGreaT] at [2007-11-20 8:19:12]
# 1 Re: Textboxes and CSS
Are you talking about these?
PeejAvery at 2007-11-8 0:42:27 >
# 2 Re: Textboxes and CSS
Yes! I should have elaborated more :blush:
HanneSThEGreaT at 2007-11-8 0:43:33 >
# 3 Re: Textboxes and CSS
It is CSS. They have some invalid CSS calling but I found the file. All <link> tags should be in the <head> but they didn't have that here.

.form_tf {
background-image: url(../ShowImages/dealOrNoDeal/form_tf_bg.gif);
background-repeat: repeat-x;
border: 1px solid #666666;
height: 22px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
}
PeejAvery at 2007-11-8 0:44:34 >
# 4 Re: Textboxes and CSS
Thanx, for clearing that up! :thumb: I never thought that was possible - just shows :rolleyes:
Honestly, do you think it's a good idea having textboxes like these, or should we rather stick to "standards"
HanneSThEGreaT at 2007-11-8 0:45:36 >
# 5 Re: Textboxes and CSS
Since CSS2 is very standard and has been around for a number of years, I find to reason to say that it is wrong. The key to remember in web design is that sometimes simple is better. Since that is a game show site, it would make sense that they are attempting to be "flashy" with their textboxes. I usually give mine a 1 pixel border but nothing fancy. Since Safari is one of my platforms that I must work with, I don't style textboxes too much be Safari has a custom textbox look that cannot be overridden.
PeejAvery at 2007-11-8 0:46:40 >
# 6 Re: Textboxes and CSS
Ahh, thanx that makes perfect sense! :thumb:
HanneSThEGreaT at 2007-11-8 0:47:36 >
# 7 Re: Textboxes and CSS
Here is an example of the Safari textbox. I like the look. But I will give a style for Firefox and IE. Usually I will style the dimensions, font, and border of the textboxes.
PeejAvery at 2007-11-8 0:48:38 >
# 8 Re: Textboxes and CSS
That looks quite funky! Is Safari only for Mac
Probably a dumb question...
HanneSThEGreaT at 2007-11-8 0:49:43 >
# 9 Re: Textboxes and CSS
No, it is not a dumb question. Yes, Safari is the web browser that ships with Mac OS X. I like that it is not built into the core like IE is with Windows. Yet another way of better security.
PeejAvery at 2007-11-8 0:50:44 >
# 10 Re: Textboxes and CSS
You can style just about everything, except for the input[type=file] control. Each browser has its own quirks that it applies to system controls, though.
penagate at 2007-11-8 0:51:39 >