| View previous topic :: View next topic | 
	
	
		| Author | Message | 
	
		| dhgfx 
 
 
 Joined: 29 Jul 2009
 Posts: 1
 
 
 | 
			
				|  Posted: Mon Aug 24, 2009 5:25 pm    Post subject: Wrong size?? |   |  
				| 
 |  
				| Hello everyone.. 
 When I first made my contact form, i put the width size to 50px. In the preview it looks good, but once I put it into my website it appears bigger. I don't know if it has something to do with my css.. but i couldn't figure out how to make it the right size.
 
 heres my temp. website mastermindmusic.freei.me/contact.html
 
 all help will be appreciated.
 
 thanks..
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| mycontac Site Admin
 
 
 Joined: 31 Dec 2003
 Posts: 2860
 
 
 | 
			
				|  Posted: Wed Aug 26, 2009 8:01 am    Post subject: Re: Wrong size?? |   |  
				| 
 |  
				| 
 
	  | dhgfx wrote: |  
	  | Hello everyone.. 
 When I first made my contact form, i put the width size to 50px. In the preview it looks good, but once I put it into my website it appears bigger. I don't know if it has something to do with my css.. but i couldn't figure out how to make it the right size.
 
 heres my temp. website mastermindmusic.freei.me/contact.html
 
 all help will be appreciated.
 
 thanks..
 |  
 I believe it has to do with how your CSS is rendering the 'maxlength' parameter of the email address field.  Try changing the following code:
 
 
 
 
	  | Code: |  
	  | <input name="email" type="text" id="email" size="20" maxlength="100" /> |  
 To:
 
 
 
 
	  | Code: |  
	  | <input name="email" type="text" id="email" size="20" /> |  
 Nick Ladd
 myContactForm.com
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		|  |