View Full Version : checkbox border...


sjb
08-06-2004, 07:03 AM
ok i'm making a theme layout on phpbb, and i have the place where you input your name, password etc black,but places where it says remember my password with a checkbox have a black border which i don't want


i don't know if this will help (its the bit about input) i can barely make sense of it in notepad...*YAY it added spaces stupid squares*
/* Form elements

*/
input,textarea, select {
background-color : {T_TD_COLOR2}[black];
color : {T_BODY_TEXT}[white];
font: normal {T_FONTSIZE2}px {T_FONTFACE1};


border-color : {T_BODY_TEXT}[white];
}

/* The text input fields background

colour */
input.post, textarea.post, select {
background-color :

{T_TD_COLOR2}[black];
}

input { text-indent : 2px; }

/* The buttons used for

bbCode styling in message post */
input.button {
background-color :

{T_TR_COLOR1};[red]
color : {T_BODY_TEXT};[white]
font-size: {T_FONTSIZE2}px;

font-family: {T_FONTFACE1};
}

/* The main submit button option */
input.mainoption {
background-color : {T_TD_COLOR1};[red]


font-weight : bold;
}

/* None-bold submit button */
input.liteoption {


background-color : {T_TD_COLOR1};[red]
font-weight : normal;
}


i added in what the colours are...

so is there a wat for me to get rid of the border without changing the black colourinside all the input fields

pb&j
08-06-2004, 05:27 PM
seems no borders are being declared, so the default ones (if any) are present.

try using this where you desire...

border:none;