um can u post the full code for the layout that u got from here or a url to it? the comment box code should look something like this :
CODE
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input name="friendID" value="Your friend ID number" type="hidden"><textarea name="f_comments" cols="40" rows="7" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" style="overflow:auto;"></textarea><br> <input value="add comment" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" type="submit"> <input value="clear" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" type="reset"></form>
and you'll notice where it says
CODE
value="Your friend ID number"
you would replace the "Your friend ID number" with the number to get a correct and working code which would look like this if you were me:
CODE
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input name="friendID" value="106337778" type="hidden"><textarea name="f_comments" cols="40" rows="7" style="border-width: 1px; border-style: solid; border-color: black' font-family: Tahoma; font-size: 10px; color: black; background-color: white;" style="overflow:auto;"></textarea><br> <input value="add comment" style="border-width: 1px; border-style: solid; border-color: black; font-family: Tahoma; font-size: 10px; color: black; background-color: white;" type="submit"> <input value="clear" style="border-width: 1px; border-style: solid; border-color: black; font-family: Tahoma; font-size: 10px; color: black; background-color: white;" type="reset"></form>
Edit:
the
CODE
<div class="navigation">
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=26132088"comments</a>[code] |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=26132088">message me</a> |
has an error in it at "friendID=26132088"comments"
it should be "friendID=26132088"> comments "
so the correct/working code for you're navigation would be
CODE
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=26132088">comments</a>[code] |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=26132088">message me</a> |