View Full Version : Submit Button Help


itsnotastrat172
12-20-2004, 01:35 AM
On my xanga site (http://www.xanga.com/home.aspx?user=gustavushatesmysister) the 'Submit' button under the comment box when you try to comment is invisible. Can anyone help?

retardednerd
12-20-2004, 02:48 AM
in the select, textarea, input part of your stylesheet you don't need to put "font-color" all you need to do is take the "font-" part out.
example:
[original]
select, textarea, input{
border:1px dotted white;
font-family: tahoma;
background: transparent;
font-size: 8pt;
text-align: justify;
font-color: D2B48C;}

[revised]
select, textarea, input{
border:1px dotted white;
font-family: tahoma;
background: transparent;
font-size: 8pt;
text-align: justify;
color: D2B48C;}

hope this helps you.

itsnotastrat172
12-20-2004, 03:22 AM
^^^
Perfect, perfect thanks a bunch!