Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Explorer vs. Firefox and Netscape - Misalignment

Status
Not open for further replies.

Ivan1

Programmer
Jun 18, 2001
113
0
0
US
Hello.
I have a small problem regarding cross-browser compatibility. Please go to and within the site go to Request Service page. If you are on a MAC there is nothing wrong with the page, but if you are on a PC+Explorer then you see the unintended white space; I think the Pay Pal link, which is a form with POST command causes the white space to appear. Other browsers on a PC do not have the problem. I tried everything to work out the problem and fix the misalignment, but nothing seems to work. I wonder if there is anyway to align the form to the top; that might fix it. Please let me know if you have ANY suggestions. Thank you.

Ivan
 
The form tag itself is what is causing your problem. I think that moving it to the row level will fix it for you.

Code:
[highlight]<form action="[URL unfurl="true"]https://www.paypal.com/cgi-bin/webscr"[/URL] method="post">[/highlight]
<tr> 
      <td width="391" height="47" valign="top">
          <input type="hidden" name="cmd" value="_xclick">
          <input type="hidden" name="business" value="info@cosmopolitanconcierge.com">
          <input type="hidden" name="item_name" value="Payment for Services">
          <input type="hidden" name="no_note" value="1">
          <input type="hidden" name="currency_code" value="USD">
          <input name="submit" type="image" src="[URL unfurl="true"]http://www.foundation-one.net/Concierge/Images/pay.jpg"[/URL] alt="Make payments with PayPal - it's fast, free and secure!" align="top" border="0">      
                                                </td>

      <td width="359" rowspan="2" valign="top"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"[/URL] width="359" height="310" align="top">
          <param name="movie" value="serviceFRM.swf">
          <param name="quality" value="high"><param name="SCALE" value="exactfit">
      <embed src="serviceFRM.swf" width="359" height="310" align="top" quality="high" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] type="application/x-shockwave-flash" scale="exactfit"></embed></object></td>
      <td width="10" rowspan="2" align="left" valign="top"><img src="Images/right_side_line.jpg" width="10" height="310" align="top"></td>
    </tr>
[highlight]</form>[/highlight]

Hope it helps.

Wow JT that almost looked like you knew what you were doing!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top