Author |
Message |
21/07/2004 22:45:02
|
nicole
Newbie
Joined: 21/07/2004 22:41:10
Messages: 2
Offline
|
Ok I am sure this has been addressed somewhere but as I have looked for about 2 hours now and can findnothing here goes.
Everything works fine. However
www.annanicole.org
when the page initially loads in my tables are thrown off and the poll script makes it twice the size it is supposed to be.
When the results are displayed the tables are the size that they are supposed to be.
Also I aligned the php script and the tables in the admin to go to the top of the table but as you can see there is a large space.
Help please
|
|
22/07/2004 03:19:37
|
Brianr
Beginner
Joined: 21/05/2004 15:16:13
Messages: 30
Location: Hamilton ON Canada
Offline
|
You're missing some closing tags
- see corrected code two posts down -
|
|
22/07/2004 03:26:09
|
Brianr
Beginner
Joined: 21/05/2004 15:16:13
Messages: 30
Location: Hamilton ON Canada
Offline
|
I noticed that you're missing a </a> tag in your menu
<td width="90" valign="baseline"><a href="#" onClick="MyWindow39=window.open('media.html','MyWindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600,left=20,top=20'); return false;" ><img src="images/mediabutton.gif" width="90" height="30" border=" 0"></a></td>
There are others missing in the links to:
mountcarmel.html
world.html
zion.html
|
|
22/07/2004 04:43:55
|
Brianr
Beginner
Joined: 21/05/2004 15:16:13
Messages: 30
Location: Hamilton ON Canada
Offline
|
Just noticed your 3rd column isn't aligned to the top either.
That means my orignial correction placed the missing tags in the wrong spot
Look for this in the code; it's at the bottom of the poll
</form>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
<table width="204" height="158" border="0" cellpadding="0" cellspacing="0">
Change it to
</form>
</td></tr>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
</td></tr></table>
<table width="204" height="158" border="0" cellpadding="0" cellspacing="0">
|
|
22/07/2004 13:09:27
|
nicole
Newbie
Joined: 21/07/2004 22:41:10
Messages: 2
Offline
|
As my momma always said: The devil is in the details.
Thank you for taking the time to search through my code to find my stupid little mistakes. I appreciate it.
Solved my problem straight away.
Thank you again.
Nicole
Do i like owe you a kidney now??
|
|
22/07/2004 22:51:08
|
Brianr
Beginner
Joined: 21/05/2004 15:16:13
Messages: 30
Location: Hamilton ON Canada
Offline
|
Glad it helped. It's not difficult to miss some tags when there are so many tables.
Do i like owe you a kidney now??
We'll see, we'll see
|
|
|