View Full Version : form styles


YellowSnow
07-11-2003, 02:32 PM
im am wondering the options and codes for form boxes.... i.e. form box styles

the type of form box i want to create is like the login area (username & pw) at brinkster.com (http://www.brinkster.com)

ive looked at the code on that site... and there wasn't anything different on the <input ...... > ... so i guess its something in CSS?

plz help if u know.... thanks

Lissa
07-11-2003, 02:52 PM
http://www.lissaexplains.com/css.shtml CSS can change the input/text areas

st4rfish
07-11-2003, 05:44 PM
didnt find anything there :(

MaGiCSuN
07-11-2003, 06:15 PM
what lissa means is that you can change input/textarea fields with CSS yourself. you just gotta copy and paste a bit with the few scripts on that page. Like border attributes can be used to get a border around an input field and so on.

input { your coding here }

can be used for input fields.

textarea { your coding here }

can be used for textarea's. Both go between <style type="text/css"></style> or in your stylesheet .css

Love,
Mirna

christiandude03
07-11-2003, 10:50 PM
If you want to do it for only one field, you can do:

<input .... class="whatever">

and then in your css:

.whatever {
border: 1px #000000 solid;
color: #000088;
// and so forth
}

YellowSnow
07-12-2003, 10:41 AM
ahh thankyou... wow the administratot replied.. much honoured =p

while we are on the subject of style sheets... ive used

scrollbar-face-color : #F6E26E;
scrollbar-highlight-color : #F6E26E;
scrollbar-3dlight-color : #F6E26E; scrollbar-shadow-color : #F6E26E;
scrollbar-darkshadow-color : #F6E26E; scrollbar-track-color : #F6E26E;
scrollbar-arrow-color : #F6E26E; }

as part of my style sheet.... but i still end up with a grey parts in my scrollbar :: http://www34.brinkster.com/jordan87/proto2d1.htm

MaGiCSuN
07-12-2003, 10:43 PM
use this:

BODY {
scrollbar-face-color : #F6E26E;
scrollbar-highlight-color : #F6E26E;
scrollbar-3dlight-color : #F6E26E; scrollbar-shadow-color : #F6E26E;
scrollbar-darkshadow-color : #F6E26E; scrollbar-track-color : #F6E26E;
scrollbar-arrow-color : #F6E26E; }

Love,
Mirna