Not exactly the answer I was looking for...
Main Topics
Browse All TopicsHere is the site:
http://caffevenezia.co.uk
Recently I posted a problem I had with a flickering background image. The solution suggested was to include background colours for the page/tables as well as an image to stop the flickering on load. This worked nicely.
Unfortunately now in Netscape 4 I have a problem in that the cells are showing the bgcolor value, while behind the cells is the background image.
Note I have a table embedded within another table to ensure that Netscape renders the image as a whole and not tiled as suggested here:
http://www.netmechanic.com
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<body bgcolor="#692A35" background="images/red.jpg
<table border="0" background="images/venice.
<tr>
<td>
<table border="0" cellspacing="15" cellpadding="15" width="700" background="">
<tr>
<td valign="top" align="center" colspan="2">
I DO NOT Specify the TD bgcolor....in Netscape it must inherit from the table bgcolor while ignoring the background image (venice.jpg).
Hmm, this sounds like a problem I had a while ago.
Take the image out of the bottom table and place into the bottom table's cell. Then add background="" to the cells of the top (nested) table. Like this:
<body bgcolor="#692A35" background="images/red.jpg
<table border="0" align="center" >
<tr>
<td background="images/venice.
<table border="0" cellspacing="15" cellpadding="15" width="700">
<tr>
<td valign="top" align="center" colspan="2" background="">
That works for me in NS 4.76... Hope it works for you
SqHd
I forgot to mention: the table BEHIND the nested table should be a single-celled table: 1 row, 1 column... So the whole thing would be similar to:
<table border="0" align="center">
<tr>
<td background="images/venice.
<table border="0" cellspacing="15" cellpadding="15" width="700">
<tr>
<td valign="top" align="center" colspan="2" background="">cell #1</td>
<td valign="top" align="center" colspan="2" background="">cell #2</td>
</tr>
<tr>
<td valign="top" align="center" colspan="2" background="">cell #3</td>
<td valign="top" align="center" colspan="2" background="">cell #4</td>
</tr>
</table>
</td>
</tr>
</table>
If you omit the [ background="" ] in the nested table's cells, those cells will display another copy of the OTHER table's bgimage!
HTH,
SqHd
Ah, I forgot you needed the bgcolor in the table to correct the image flickering problem... There's really no way to have color defined in those cells AND have the background image on top.
Maybe try placing a transparent gif in the cells rather than bgcolor...
btw, please ignore the colspans in my earlier suggestion.
Good luck!
In the end I decided to do a browser check in ASP and formulate the HTML
based on the browser and version. Not what I wanted but better than nothing!
If anyone can find a solution to this in HTML I'd still like to know it!
Thanks everyone....what's the policy here?
Do I dish out points to those who helped me even though there's no working answer?
Business Accounts
Answer for Membership
by: jaysolomonPosted on 2003-05-23 at 09:13:17ID: 8573073
first things first
quit trying to code for NS4x. It is a waste of your time, and money.
What looks good in NS4x might not look good in newer browsers, and vise versa
Code for newer browsers, and if it works in NS4x fine, and if it don't then that will be the user(s) problem, not yours
jAy