I have been writing web code for a few years now and I am stumped. I am writing basic CSS/HTML and my textarea won't input text. my title is there and after double clicking on it, my cursor should indicate it is ready to type.
Any ideas?
My css
.postForm {
float: right;
width: 580px;
height: 80px;
position:relative;
margin-top:-30px;
padding-top:30px;
left:-30px;
}
My Html
<div class="postForm">
<form action="profile.php?id=<? echo $_GET['id']; ?>" method="POST">
<textarea style="resize:none;font-family:Comic Sans MS; font-size:12pt;overflow: hidden;" id="post" name="post" class="auto-clear" rows="1" cols="60" title="Publish your thoughts...">
</textarea>
<input style="position:relative;margin-left:450px;margin-top:-66px;" type="image" name="send" value="Post" src="post.png" />
</form>