Add comment box for divs, I always screw it up |
Add comment box for divs, I always screw it up |
Nov 5 2007, 06:23 PM
Post
#1
|
|
![]() I listen to bands that don't even exist yet... ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 330 Joined: Sep 2005 Member No: 249,189 |
I use a code that lets me use an image for the submit button but i can never get the text area to fit correctly into the form
CODE <style type="text/css">
.addcom {position: absolute; width:271px; height:202px; top: 608px; left: 50%; margin-left: -114px; background-color: NONE; border: none; overflow:auto; z-index: 3; display:inline;visibility:visible;} </style> <div class="addcom"> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"> <input name="friendID" value="FRIENDIDHERE" type="hidden"> <textarea name="f_comments" wrap=virtual cols="1" rows="1" style="background-color: transparent; color:AAd2d4; font-family: Arial; font-size: 12px; border: none; width:270px!important; height:202px!important;" style="overflow:auto;"> Type your comment in here.</textarea> <input type="image" src="http://img114.imageshack.us/img114/4809/submitblackyd5.gif"/> </form></div> |
|
|
|
![]() |
Nov 6 2007, 06:59 PM
Post
#2
|
|
![]() Offline. ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 609 Joined: Mar 2007 Member No: 507,591 |
HERE IS WHAT I WAS TELLING YOU TO DO
![]() HERE IS A LIVE PREVIEW PREVIEW I ADDED THE BORDER SO YOU CAN SEE IT... WITH BODER CODE <style type="text/css"> .addcom { border:2px solid; border-colorFF0000; position: absolute; width:271px; height:202px; top: 608px; left: 50%; margin-left: -114px; background-color: NONE; overflow:auto; z-index: 3;} </style> <div class="addcom"> <center><br> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"> <input name="friendID" value="FRIENDIDHERE" type="hidden"> <textarea name="f_comments" style="width:200px;height:140px; border:2px solid;border-colorFF0000;background-color: transparent;color:AAd2d4;font-family: Arial;font-size: 12px;overflow:auto;" > Type your comment in here. </textarea> <br> <input type="image" src="http://img114.imageshack.us/img114/4809/submitblackyd5.gif"/> </form> </div> WITHOUT BORDER CODE <style type="text/css"> .addcom { border:none; position: absolute; width:271px; height:202px; top: 608px; left: 50%; margin-left: -114px; background-color: NONE; overflow:auto; z-index: 3;} </style> <div class="addcom"> <center><br> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"> <input name="friendID" value="FRIENDIDHERE" type="hidden"> <textarea name="f_comments" style="width:200px;height:140px; border:none;background-color: transparent;color:AAd2d4;font-family: Arial;font-size: 12px;overflow:auto;" > Type your comment in here. </textarea> <br> <input type="image" src="http://img114.imageshack.us/img114/4809/submitblackyd5.gif"/> </form> </div> This post has been edited by Fawaz: Nov 6 2007, 07:07 PM |
|
|
|
protos Add comment box for divs Nov 5 2007, 06:23 PM
Fawaz Change You Code To This
CODE<style type=... Nov 5 2007, 08:58 PM
protos yes, I know that. but the real question it what to... Nov 6 2007, 02:07 AM
digitalfragrance QUOTE(protos @ Nov 6 2007, 02:07 AM) yes,... Nov 6 2007, 08:32 AM
Fawaz I Don't No What You Mean By Put The Code In So... Nov 6 2007, 07:47 AM
protos sorry, about not explaining it fully hope this hel... Nov 6 2007, 04:11 PM
protos exactly but I'd like the textarea to fill up t... Nov 6 2007, 09:19 PM![]() ![]() |