View previous topic :: View next topic |
Author |
Message |
chava2uk
Joined: 01 May 2005 Posts: 1
|
Posted: Sun May 01, 2005 11:11 am Post subject: Help Our form sticks to left side of page |
|
|
The form aligns itself on the left side of the page no matter what. It even overrides frames when we set them up. We tried using a smaller % for the width but that did nothing. Our incomplete test site can be found at [url]http:www//freeprizedraw.foru.org.uk [/url] Can you help please? |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Sun May 01, 2005 3:03 pm Post subject: Reply |
|
|
I can't find the link to your site. By default, web broswers align content left. There are many ways to get things to align differently:
1. Place the form within a <div> tag. Example:
Code: |
<div align="center">myContactForm.com Code Goes Here</div> |
2. Place the form within a seperate table. Example:
Code: |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">myContactForm.com Code Goes Here</td>
</tr>
</table> |
Thanks,
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|