1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Form Fluke or phenomenon

Discussion in 'HTML & Website Design' started by focus3, Aug 29, 2005.

  1. #1
    I have this form problem. On this page:

    http://www.california-bankruptcy.info/contactus.htm

    You can't select the text boxes labelled "city" and "message" unless you spend an hour to do each. Works in firefox but not IE6

    I dont have any idea whats causing this or how to fix it.

    Please advise :D
    focus3
     
    focus3, Aug 29, 2005 IP
  2. Crazy_Rob

    Crazy_Rob I seen't it!

    Messages:
    13,157
    Likes Received:
    1,366
    Best Answers:
    0
    Trophy Points:
    360
    #2
    Seems fine to me, young man.

    :D
     
    Crazy_Rob, Aug 29, 2005 IP
  3. focus3

    focus3 Peon

    Messages:
    223
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #3
    have you tried clicking in the general area of the box? you can use the tab button, but generally with IE 6 you cant just click on it to select it, you have to click near the very first character
     
    focus3, Aug 29, 2005 IP
  4. Crazy_Rob

    Crazy_Rob I seen't it!

    Messages:
    13,157
    Likes Received:
    1,366
    Best Answers:
    0
    Trophy Points:
    360
    #4
    Oh....IE?

    I don't use IE.

    Yeah, it's messed up in IE...but i can't tell why.- sorry
     
    Crazy_Rob, Aug 29, 2005 IP
  5. Arnica

    Arnica Peon

    Messages:
    320
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #5
    It looks like it might be to do with your html not validating and IE trying to have a best stab at what it thinks you want whereas Firefox will just ignore it.

    It looks IE is setting those two input fields to have no internal width or height (you can click into the top edge of both fields)

    Correct what you can in the html and see what happens when the page validates. Just noticed an error in your css (missing '#' in A:hover { COLOR: 618aac })

    Good luck

    Mick
     
    Arnica, Aug 29, 2005 IP
    focus3 likes this.
  6. focus3

    focus3 Peon

    Messages:
    223
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Bloody wonderful... I cant figure it out. Except if I add extra rows on the right navigation, it allows for some areas to be clickable, but not all of it.
     
    focus3, Aug 30, 2005 IP
  7. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #7
    The problem is in your table structure. Moving the form above the table like this...

    
              <form method="POST" action="bankruptcy-california-thankyou.php">
                  <input type="text" name="contact" size="30">              
    				<input type="text" name="city" size="30">
    				<textarea name="message" cols="45" rows="15"></textarea>
    <input type="submit" name="Submit" value="Send Message">
    </form>
    
    PHP:
    Makes it work fine.

    Removing the table and having only the form works fine too.
    
          <TD width="72%" rowSpan=2 valign="top">
          
    	  <br>
                <h1>Ask Your Personal Bankruptcy Questions</h1>
    
    			<HR color =" #d3dcdf"  align=left width=540 noShade SIZE=2>
               
    		   
    		   <form method="POST" action="bankruptcy-california-thankyou.php">
                  <input type="text" name="contact" size="30">              
                    <input type="text" name="city" size="30">
                    <textarea name="message" cols="45" rows="15"></textarea>
    <input type="submit" name="Submit" value="Send Message">
    </form> 
    		   
    		   
    		   </TD> 
    
    PHP:

    I'll leave it up to you to sort out the details.
     
    noppid, Aug 30, 2005 IP
    focus3 likes this.