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

Another painful Netscape problem! TD background not showing...

Status
Not open for further replies.

Streetdaddy

Programmer
Jun 10, 1999
161
AU

in IE, there is a background behind the buttons. In Netscape it will not show no matter WHAT I do! Ive tried everything, td background, tr background, table background

nothing. Check out the code and please tell me if there is something that I am missing!

M. X-) Miles
vmiles@senet.com.au
 
You are calling images on top of background images.

Unfortunately there is not way to get this to work in Netscape.

I actually had to create multiple sets of pages for my site because of the very same problem.

I have JavaScript that will make it easy for you to redirect pages.

To see the code look at the page made for Netscape and the one made for IE (you must use the browser to view the pages or they will redirect to the appropriate pages).

Page made for IE:

Page made for Netscape:

What you will notice on the Netscape page is that I basically made snap-shots of the IE pages and blocked the images in place. One thing to keep in mind is that 85% of the users on the Internet (general population) use Internet Explorer. I used that information when I made the Netscape pages. They take longer to load but at least they work.

By the way, view the source of the pages to 'steal' the redirect code if you want to use it. If you have trouble just submit another post.

Hope this helps.

» » » » » »
Mike Barone
FREE and Pro CGI/Perl Scripts

FREE Scripts
 
Did you sort it? have you tried stylesheets for the buttons naming the elements..
 
I don't get it? Explain how I can use stylesheets?

The site uses a lot of graphics, so I decided that I would avoid using the TD background and just make the backgroud up with the button images, rather than using transparent button images (which i did in IE and it looks sweeeet!! X-) ) Miles
vmiles@senet.com.au
 
like this

<html>
<head>
<style type=&quot;text/css&quot;>
INPUT
{
BACKGROUND-COLOR: #e70f7f;
COLOR: #000000;
FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<form method=&quot;post&quot; action=&quot;&quot;>
<input type=&quot;submit&quot;>
</form>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top