Why Can't I Add a Table to This Include?

XML, Perl, Python, and other languages can be discussed here, even if it isn't PHP (We might forgive you).

Moderator: General Moderators

Post Reply
davidlieb
Forum Newbie
Posts: 3
Joined: Mon Mar 08, 2004 2:01 pm

Why Can't I Add a Table to This Include?

Post by davidlieb »

First, let me say thank you for your help. I'm mega stuck, here...

I'm updating a site created in PHP. Normally I'm an HTML guy, but I've taught myself enough to be dangerous. I'm trying to add a table to the include that controls the second column at page:
http://www.lifemoxie.com/events/events_ ... werday.php

Right now it'll allow me to put in a bunch of regular text, but if I try to put a table (for formatting) it looks like this:
http://www.lifemoxie.com/events/events_ ... y_test.php
(notice how the second column is pushed down to the bottom left)

I don't know what the hell is going on... I tried to add another <div> below the first one, but no dice...

Here's the code for the right column include, if it helps:

Code: Select all

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="paypal_moneymoxie">

<input type="hidden" name="cmd" value="_xclick">

<input type="hidden" name="business" value="register@lifemoxie.com">

<input type="hidden" name="item_name" value="Women's Economic Power Day">

<input type="hidden" name="amount" value="95.00">

<input type="hidden" name="image_url" value="https://tornado.he.net/~elephnt/img/logo_lifemoxie_paypal.gif">

<input type="hidden" name="no_shipping" value="1">

<input type="hidden" name="no_note" value="1">

<input type="hidden" name="currency_code" value="USD">


 <div id="inside_right_column_bottom"> 

<img src="/img/title_events_registernow.gif" width="274" height="21" class="sidebar_img">


						

<p class="sidebar_11px">

<strong>Event Date:</strong> Sat, March 20, 2004<br>

<strong>Time:</strong> 8:00AM - 5:00PM<br>

<strong>Cost:</strong> $95 now / $105 at the door<br>

</p>

				

<p class="sidebar_11px">

<strong>Location:</strong><br>

First Unitarian Church and Center<br>

1187 Franklin Street, San Francisco, CA<br>

<A href="http://maps.yahoo.com/py/maps.py?Pyt=Tmap&addr=1187+Franklin+Street+&csz=San+Francisco+CA+&Get%A0Map=Get+Map" class="standard">Click here for map and directions</a>

</p><br>

				

<a href="events_economicpowerday_register.php"><img src="/img/button_registernow_off.gif" hsrc="/img/button_registernow_on.gif" width="152" height="20" border="0"></a>
<img src="/img/icon_creditcards_pink.gif" width="122" height="20">

				

</div>

</form>
[/url]
Post Reply