Web Hosting Talk







View Full Version : having a little problem


adidasrta
08-16-2004, 11:05 PM
i am having a little problem with the site wrwebhosting.com

i am very confused on how to setup the domain search in the middle of the page. ALSO if you notice on the main page...on the left near there bottom there is a white space. Can anyone help me out. It would be great!

m_gersitz
08-16-2004, 11:19 PM
You need to setup a form that checks if the domain has been registered or not.

Add text about your company. ;)

adidasrta
08-16-2004, 11:22 PM
hehe, i'm just helping a friend get his site setup, but i can figure out that white area and the domain thing...do you kow of anyplace i can get a script of that sort?

m_gersitz
08-16-2004, 11:34 PM
http://www.google.com/search?sourceid=navclient&ie=UTF-8&q=domain+name+checker+script

adidasrta
08-16-2004, 11:41 PM
amazing i googled domain check and only got sites with domain registration thanks again.


Any idea on the white space?

the_pm
08-17-2004, 12:00 AM
Any idea on the white space?
Well, at the risk of offending you if you happened to be the author of this template, the template's engineering is extraodinarily flawed. I'm not just talking about non-standard, deprecated and obsolete markup (which aptly describes nearly the entire page of code). I'm talking about <style> tags in the body, rows of empty cells and lack of doctype - no wonder though, I don't think any doctype could describe this.

I point these things out specifically because the element being styled in the wrong section of the page happens to be <td> - and such seriously misconstrued markup could be causing spacing issues in your table cells, as browsers will react unpredictably to this. More likely, however, is either the row of empty cells at the bottom or the spaces within the <td>s in the row above. IE in particular has been known to have problems with empty cells, so get rid of that row.

My #1 guess is the spaces in the <td>s. Instead of this:

<td> <img src="images/spacer.gif" width="1" height="34" alt=""></td>

try this:

<td><img src="images/spacer.gif" width="1" height="34" alt=""></td>

and make sure this is correct in every single cell on every page. What's happening is the browser is leaving room for the font's descenders - since it sees a space, it believes it is attempting to render a line of text with an image stuck in the middle of it, and it spaces things out appropriately.

When you're done making these changes, run this through a validator, fast! In all seriousness, you're going to run into some major problems if you don't clean this thoroughly. Just a friendly warning for you!