Jump to content

domain checker on main site


addeacher

Recommended Posts

When integrating the domain checker on main site, there always seem to be a extra space / cell / row just below the domain checker.

 

I checked in the site code there are no codes for space below it or whatsoever, in design mode in dreamweaver it shows fine but when viewing in browser it shows a space below.

 

Any idea?

 

 

 

 

<form action="http://www.yourdomain.com/whmcs/domainchecker.php" method="post">

<input type="hidden" name="direct" value="true">

Check Availability: <input type="text" name="domain" size="20"> <select name="ext">

<option value=".com">.com

<option value=".net">.net

<option value=".org">.org

<option value=".info">.info

<option value=".name">.name

<option value=".co.uk">.co.uk

</select>

<input type="submit" value="Go">

</form>

Link to comment
Share on other sites

forms cause extra space below them, one fix is to put it into a table and put the <form> tag before <tr>, reverse for closing tags.

 

this should work.

 

<table width="100%">
<form action="http://www.yourdomain.com/whmcs/domainchecker.php" method="post">
<tr>
<td> 
<input type="hidden" name="direct" value="true"> 
Check Availability: <input type="text" name="domain" size="20"> <select name="ext"> 
<option value=".com">.com 
<option value=".net">.net 
<option value=".org">.org 
<option value=".info">.info 
<option value=".name">.name 
<option value=".co.uk">.co.uk 
</select> 
<input type="submit" value="Go"> 
</td>
</tr>
</form>
</table>

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated