Hey, I've set up a comment box on my myspace account but I've had problems with it. First off here's the code: <center><table><tr><td BGCOLOR="CCCCCC"> <td align=center><formmethod="post" action="index.cfm?fuseaction=user.ConfirmComment"style="display:inline;"> <input type="hidden" name="friendID"value="Your Friend ID Number">Leave a Comment Here<br> <textarea name="f_comments" cols="33" rows="4"></textarea><br><input type="submit" value="POST"></form></td></tr></table></center> My problem is I can't make the background color change, right now it shows as transparent. I've tried changing BGCOLOR to different color codes but to no avail. Does anybody know how to fix this or can someone propose a better method?
Background of what? The table background or the Comment box background? If its the background colour, i can see from the code you have two cell. Therefore have something like the following if you want the Table Background <center> <table> <tr> <td width="XXXSIZE" align=center bgcolor="#999999"><formmethod="post" action="index.cfm?fuseaction=user.ConfirmComment"style="display:inline;"> <input type="hidden" name="friendID"value="Your Friend ID Number"> Leave a Comment Here<br> <textarea name="f_comments" cols="33" rows="4"></textarea> <br> <input type="submit" value="POST"></form> </td> </tr> </table> </center> CJC
I tried your other code and tried messing around with the color: nothing happened. Therefore it must be the other color (comment box background) that you were talking about.
The first one is the code on the 2nd post on this thread, just with instead of gray background, its red CJC