I'm not THAT good with Javascript/html/css but this word count box has a white background and my forum has a black background. This consequently means that the text that is entered on my forum is white, and it blends in with this word count box. I need the input text to be black.
Thanks if you can help with this!
EDIT: http://naruto-role-play-rpg.forumotion.com/
Forgot.
- Code:
<form method="POST" name="wordcount">
<script language="JavaScript">
function countit(){
/*Word count script
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/
var formcontent=document.wordcount.wordcount2.value
formcontent=formcontent.split(" ")
document.wordcount.wordcount3.value=formcontent.length
}
</script>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><textarea rows="12" name="wordcount2" cols="20" wrap="virtual"></textarea></td>
</tr>
<tr>
<td width="100%"><div align="right"><p><input type="button" value="Calculate Words"
onClick="countit()"> <input type="text" name="wordcount3" size="20"></p>
<div align="center"></p>
</center></div></div></td>
</tr>
</table>
</form>
Thanks if you can help with this!
EDIT: http://naruto-role-play-rpg.forumotion.com/
Forgot.