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.
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">
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 CSS code: table { width:470px; border: 0px solid black; } tr { height:37px; background-image:url(menuback.jpg); background-repeat:no-repeat; } ~