Help with Div Overlay comment box |
![]() ![]() |
Help with Div Overlay comment box |
Oct 2 2008, 01:06 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Feb 2007 Member No: 500,479 |
Hi there. I am trying to set up my first Div overlay layout and have everything working except for one thing... The layout is a halloween layout and I believe you are supposed to be able to type comments in this little pumpkin text box. Underneath the text box, there is a "submit" box which I am assuming should actually submit the comment and bring you to the confirm comment screen on myspace? I figured out the link to leave comments, however, when I click submit, it just brings me to the screen where you can type a comment instead of the confirm comment screen so I am forced to re-type my comment. Is that how this is supposed to work? I pasted the section of code for the comment box below. CODE <div class="commentbox2">
<center> <form method="post" action="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=3726951&MyToken=c20bd03d-7fde-433c-9aef-90a94212115et"> <input name="3726951" value="3726951" type="hidden" /> <textarea name="f_comments" class="commentbox" cols="12" rows="7" style="width:145px; height:80px; border-width: 0px; border-style: solid; border-color: ffffff; font-family: verdana; font-size: 9px; color:000000; background-color:transparent; overflow: auto;">boo! i love you!</textarea><br /> <input name="submit" type="submit" class="commentbox" style="border-width: 1px; border-style: solid; border-color: ffffff; font-family: verdana; font-size: 9px; color:000000; background-color: transparent;" value="submit" /> |
|
|
|
Oct 2 2008, 05:24 PM
Post
#2
|
|
![]() temptedeli ![]() ![]() ![]() Group: Member Posts: 31 Joined: Feb 2007 Member No: 503,331 |
This is what i usually use, and it works for me, so see if it works for you, just add your friend id where it says. There's no need for any link, just the friend id.
CODE <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComme nt"><input name="friendID" value="YOUR FRIEND ID" type="hidden" /><textarea name="f_comments" style="overflow:auto;" cols="25" rows="3">You make me perfect... </textarea> <br /> <input value="GO" style="border-width: 1px; border-style: solid; border-color: ffffff; width:75px; font-family: small fonts; text-transform:uppercase; letter-spacing:1pt; font-size: 7px; color: 475c6f; background-color: transparent;" type="submit" /> <input value="CLEAR" style="border-width: 1px; border-style: solid; border-color: 475c6f; width:75px; font-family: small fonts; text-transform:uppercase; letter-spacing:1pt;font-size: 7px; color: 475c6f; background-color: transparent;" type="reset" /></form> |
|
|
|
Oct 3 2008, 08:55 AM
Post
#3
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Try this:
CODE <div class="commentbox2"> <center> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"> <input name="3726951" value="3726951" type="hidden" /> <textarea name="f_comments" class="commentbox" cols="12" rows="7" style="width:145px; height:80px; border-width: 0px; border-style:solid; border-color:ffffff; font-family: verdana; font-size: 9px; color:000000; background-color:transparent; overflow: auto;">boo! i love you!</textarea><br /> <input name="submit" type="submit" class="commentbox" style="border-width: 1px; border-style: solid; border-color: ffffff; font-family: verdana; font-size: 9px; color:000000; background-color: transparent;" value="submit" /> Your codes were right. The link was just wrong. That should work. |
|
|
|
Oct 4 2008, 09:48 AM
Post
#4
|
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Feb 2007 Member No: 500,479 |
Try this: CODE <div class="commentbox2"> <center> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"> <input name="3726951" value="3726951" type="hidden" /> <textarea name="f_comments" class="commentbox" cols="12" rows="7" style="width:145px; height:80px; border-width: 0px; border-style:solid; border-color:ffffff; font-family: verdana; font-size: 9px; color:000000; background-color:transparent; overflow: auto;">boo! i love you!</textarea><br /> <input name="submit" type="submit" class="commentbox" style="border-width: 1px; border-style: solid; border-color: ffffff; font-family: verdana; font-size: 9px; color:000000; background-color: transparent;" value="submit" /> Your codes were right. The link was just wrong. That should work. When I change it to the link you posted, it tells me that I have an invalid User ID when I click submit :/ |
|
|
|
Oct 4 2008, 10:39 AM
Post
#5
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
look for this part of your code:
CODE <input name="3726951" value="3726951" type="hidden" /> and change it to this: CODE <input name="friendID" value="3726951" type="hidden" />
|
|
|
|
Oct 4 2008, 11:05 AM
Post
#6
|
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Feb 2007 Member No: 500,479 |
|
|
|
|
Oct 4 2008, 04:17 PM
Post
#7
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 2,435 Joined: Feb 2007 Member No: 506,205 |
Topic closed and moved to Resolved.
|
|
|
|
![]() ![]() |