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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cross Platform Issue

Status
Not open for further replies.

hseven

Technical User
Aug 29, 2001
9
US
I designed a site for a client that looks and works fine in Internet Explorer on the Mac. It even looks ok in Netscape on the PC. Unforturnately, it doesn't look good in Explorer on a PC. The html text extends down beyond the interface background.

The site is
Any help or feedback would be much appreciated.

Thanking you in advance.

hseven
 
First of all get rid of:
< p>< /p>
near the bottom of the code. Many browsers will collapse empty cells and paragraphs - IE on the pc will create space for empty elements.

If that doesn't make enough room i would recommend setting the top and bottom margins to zero, then add the attribute of valign=&quot;center&quot; to your table and set a html 4.01 transitional doctype by using this as the first line of the page:

<!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>

A scrict doctype would result in the valign=&quot;center&quot; attribute not working. Currently you don't have any doctype which can give unpredictable results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top