elfenheroin
04-21-2004, 03:54 PM
In myshoutbox, I linked my external stylesheet to it. But the input, textarea is not working! :rant:
http://users.quickfox.org/~redice/index2.shtml
A:link
{ text-decoration: none; color:#b1ebeb; }
A:visited
{ text-decoration: none; color:#b1ebeb; }
A:active
{ text-decoration: none; color:#b1ebeb; }
A:hover
{ text-decoration: none; color:#b1ebeb; border: 1px dashed #fff; }
font-family: verdana;
color: #000;
font-size: xx-small;
background-color: #0c0;
body
{
scrollbar-face-color : #0c0;
scrollbar-highlight-color : #0c0;
scrollbar-3dlight-color : #b1ebeb;
scrollbar-shadow-color : #0c0;
scrollbar-darkshadow-color : #b1ebeb;
scrollbar-track-color : #0c0;
scrollbar-arrow-color : #0c0;
}
td, table, tr
{ font-family: verdana;
font-size: xx-small;
color: #000;
background: #0c0;
input, textarea
{ background: #000000;
font-family: verdana;
font-size: xx-small;
color: #fff;
border-style: dashed;
border-color: #fff;
border-width: 1px; }
What's wrong?
Rosey
04-21-2004, 07:35 PM
The part in red, what does it go to? It's just out there, if it's supposed to be the body, put it in the body { }.
What exactly isn't working on your input? I notice the code for your border is a little off and I changed it, it's in darkred
A:link
{ text-decoration: none; color:#b1ebeb; }
A:visited
{ text-decoration: none; color:#b1ebeb; }
A:active
{ text-decoration: none; color:#b1ebeb; }
A:hover
{ text-decoration: none; color:#b1ebeb; border: 1px dashed #fff; }
font-family: verdana;
color: #000;
font-size: xx-small;
background-color: #0c0;
body
{
scrollbar-face-color : #0c0;
scrollbar-highlight-color : #0c0;
scrollbar-3dlight-color : #b1ebeb;
scrollbar-shadow-color : #0c0;
scrollbar-darkshadow-color : #b1ebeb;
scrollbar-track-color : #0c0;
scrollbar-arrow-color : #0c0;
}
td, table, tr
{ font-family: verdana;
font-size: xx-small;
color: #000;
background: #0c0;
input, textarea
{ background: #000000;
font-family: verdana;
font-size: xx-small;
color: #fff;
border: 1px dashed #fff; }
Calidris
04-21-2004, 10:49 PM
There are no textarea elements on the tagboard, only a few text type inputs. Are they what you mean?
elfenheroin
04-23-2004, 05:02 PM
Thanks, starlet, but it didn't work. The input has still the Arial or Times New Roman or whatever font and no border... :(
Calidris
04-23-2004, 07:03 PM
What isn't working? I see the text inputs just fine (with a default border)
MaGiCSuN
04-23-2004, 08:08 PM
*looks around for starlet* it was rosey ! haha :P
There are no textarea's on your page, you only used input tags like people before me allready replied.
Some things though:
A:hover
{ text-decoration: line-through; color:#46ffff; FILTER: opacity(50); }
should be:
A:hover
{ text-decoration: line-through; color:#46ffff; FILTER: alpha(opacity=50); }
and then background: #COLOR; (all those) should be background-color: #COLOR;
probably won't make a big difference, but it's a difference in coding :P
that above is from your main site. the index2.html page
try this as your css for your shoutbox (on the .css file)
A:link
{ text-decoration: none; color:#000; }
A:visited
{ text-decoration: none; color:#000; }
A:active
{ text-decoration: none; color:#000; }
A:hover
{ text-decoration: none; color:#000; border: 1px dashed #fff; }
body
{ font-family: verdana;
color: #000;
font-size: xx-small;
background-color: #0c0;
scrollbar-face-color : #0c0;
scrollbar-highlight-color : #0c0;
scrollbar-3dlight-color : #000;
scrollbar-shadow-color : #0c0;
scrollbar-darkshadow-color : #000;
scrollbar-track-color : #0c0;
scrollbar-arrow-color : #0c0;
}
td, table, tr
{ font-family: verdana;
color: #000;
font-size: xx-small;
background-color: #0c0; }
input, textarea
{ background-color: #000000;
font-family: verdana;
font-size: xx-small;
color: #fff;
border: 1px dashed #fff; }
you forgot a closing } on the td, table, tr part :)
Love,
Mirna
elfenheroin
04-24-2004, 05:47 AM
Oh so THAT"S what was wrong. ^_^;;; Thankies!
Where is my brain!? First I forgot a bracket, then I called Rosey 'starlet'. ~_____~