Daily Horoscopes - Loan - Ringtones - Internet Advertising - Loan

PDA

View Full Version : [URGENT] very simple HTML problem: IE - Firefox compatibility


tolgafiratoglu
Oct 17th 2007, 7:10 am
I couldn't understand the problem, may be you can:

the following works in Firefox well. But in IE, doesn't show anything.

What's the problem?

<table width="470" border="0">
<tr height="37" background="menuback.jpg" style="background-repeat:no-repeat">
<td nowrap="nowrap">

....

Since I need to show the site to who will buy, I need to solve this
urgently, thanks.

Geckonm
Oct 17th 2007, 8:11 am
I'd need to see the rest of the code. What isnt showing - the BG image?

If so, try

<tr height="37" style="background: url(menuback.jpg) top left no-repeat">

night|shift
Oct 17th 2007, 10:48 am
I strongly recommend you to solve all the style things using CSS.
It's much better supported by both IE and Firefox - and - It's not web 1.0 :D

CSS code:

table { width:470px; border: 0px solid black; }
tr { height:37px; background-image:url(menuback.jpg); background-repeat:no-repeat; }

~

naif
Oct 17th 2007, 8:07 pm
Could be this: the <tr> tag does not have any height or background attribute..