• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Applet Color not updating in Chrome

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm using an applet from a company that's out of business called iMint. My problem is that I have changed the BK color. The color shows up fine in Internet Explorer, but does not change in Chrome. Both browsers are the most recent. I have included some code, and I suspect that the problem is here. The problem is the left side navigation. It shows as yellow it should be Tan as on the lower right.

I'm only trying to get it to temporarily work. I'm going to do a complete rewrite to get away from the dependence on iMint's applet. This green horn needs HELP.

Bob
The problem can be seen: www.home2000.com

I suspect that my problem could very well be in this first line of code. The HTML was written three years ago.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Amerifax. Wisconsin's largest inventory of new homes and subdivision lots plus scattered sites. Serving Wisconsin's New Home Construction Industry since 1989 with custom reports and publications.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content=" Amerifax." />
<meta name="keywords" content="new home,amerifax data corporation" />
<script src="js/modernizr.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26815629-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>
</head>
<html class="no-js">
<frameset rows="89,*" frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" scrolling="NO" src="adc_search.shtml" marginwidth="0" marginheight="0" >
<frameset cols="200,*" frameborder="NO" border="0" framespacing="0" rows="*">
<frame name="leftFrame" scrolling="NO" noresize src="java/indices/amerifax_menu.htm" marginwidth="0" marginheight="0">
<frame name="mainFrame" scrolling="AUTO" marginwidth="2" marginheight="1" src="adc/home-welcome.htm">
</frameset>
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
New home builder
<table><tr><td><a name="speed test" href="http://www.speedtestpro.net" target="C5FGZ9"><img src="http://www.speedtestpro.net/images/speedtest48.gif" border="0"></a></td><td><a name="speed test" href="http://www.speedtestpro.net">Connection Speed</a><br>by <a href="http://www.absolutefuturity.com">Absolute Futurity</a></td></tr></ta
></body>
</noframes>
</html>
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic