Jump to content

html wont work in IE but ok in firefox


Recommended Posts

please help

I am making a web page for my sisters shop and have been using Firefox which works fine

but if i use ex the marquee stops after one scroll and one of the tables can any body please help

Smartie 91

post-8338-1140897617_thumb.jpg

www.floralcreationsflorist.co.uk/floral

Edited by smartie91
Link to comment
Share on other sites


Change the marquee behaviour from 'slide' to 'alternate' to get it to switch directions.

I'll look inot your table problem. Seems to be due to how IE6 (judging from your screenshot) is handling CSS.

I'm seeing that you hgave NESTED <body> tags in the main page which can cause alot of rendering problems.

<body>
<body onLoad="rollIn()">
<body bgcolor="#790000">

Would best be

<body onLoad=rollIn(); bgcolor=#790000>

I'll edit as I review the source code of the pages.

Edited by Chozo4
Link to comment
Share on other sites

Sorry , I see what you meant by the marquee problem between IE and Firefox (Sleep deprevation caused me to overlook it). Best way to get them to both work equally it seems is through a JavaScript marquee solution.

Ok, to fix the problem with overlapping cells as it seems, you need to set a width size for the cell housing your 'recommended links' table.

Normally, what you had was

<TR vAlign=top><!-- row 1 -->
<TD>
<DIV align=left>
<TABLE border=1 borderColor=#ffcccc cellPadding=10 cellSpacing=0
width="100%">
<TBODY>
<TR vAlign=top>
<TD>

Setting the last <TD> to

<td width=200>

fixes your problem. IE tends to enjoy giving as much room as possible to the rightmost cells and then squashing the leftmost cells in the process when an absolute size is not set.

Edited by Chozo4
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...