Jump to content
MakeWebGames

Registration captcha help


Mafiabusiness

Recommended Posts

http://i.imgur.com/Ie4HN.png

How do i move this to the left? or under the picture?

 

{
print " <tr>
<td colspan=2><img src='captcha_verify.php?bgcolor=C3C3C3' width='170' height='88'/><br /></td>
<td><b>Enter Captcha Code</b></td><td colspan=2><div class='reg_namebox'><input type='text'  name='captcha' /></td>
</tr> ";
}
print "
<tr>
<td colspan=3 align=center><div class='reg_nametxt'><input type=submit value=$rreg id='reg_btn' style='color:#000;></td>
</tr>
</table><div class='regtop'> </div>    
</form><br />";

 

Tell me if you need more parts of the code.

Link to comment
Share on other sites

replace

<td colspan=2><img src='captcha_verify.php?bgcolor=C3C3C3' width='170' height='88'/></td><td><b>Enter Captcha Code</b></td><td colspan=2><div class='reg_namebox'><input type='text'  name='captcha' /></td></tr> ";

 

with

 

 <td colspan=2><img src='captcha_verify.php?bgcolor=C3C3C3' width='170' height='88'/></td><tr><td><b>Enter Captcha Code</b></td></tr><td colspan=2><div class='reg_namebox'><input type='text'  name='captcha' /></td>
</tr> ";
Edited by mixmaster
Link to comment
Share on other sites

replace
<td colspan=2><img src='captcha_verify.php?bgcolor=C3C3C3' width='170' height='88'/></td><td><b>Enter Captcha Code</b></td><td colspan=2><div class='reg_namebox'><input type='text'  name='captcha' /></td></tr> ";

 

with

 

 <td colspan=2><img src='captcha_verify.php?bgcolor=C3C3C3' width='170' height='88'/></td><tr><td><b>Enter Captcha Code</b></td></tr><td colspan=2><div class='reg_namebox'><input type='text'  name='captcha' /></td>
</tr> ";

Thank you!

How can i make that box white? Because i got a black background and it's not so very visible.

Link to comment
Share on other sites

So was everyone when they started.

Difference is trying to do it yourself and if you cannot then posting what you have tried so learning from your mistakes instead of asking for it to be handed to you without trying.

This is basic css styling. Something you should know already before attempting to make a game. Your trying to run before you can walk.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...