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

Page(s) displaying different at 1 location, multiple machines...

Status
Not open for further replies.

stephenmbell

IS-IT--Management
Jan 7, 2004
109
US
I have just finished designing a page...
The problem is this: I have previewed the site on multiple machines IE6/IE7/Firefox at my varous locations, and the site looks fine.

I have also viewed the site in Safari on MAC and the site looks fine.

However, at my clients office, I go to view the page and my banner graphic does not display (the logo at teh top of the page). I tried deleting temporary internet files and cookies and all that, installed firefox, still does not show.

When I went and viewed the source, I was astonished that - THE SOURCE CODE is different?!?!?!

When I view the source of the homepage at my locations I see the following:
Code:
<body>
<br />
<br />
<table width="799" border="2" align="center" cellpadding="0" cellspacing="0" class="outerborder">
  <tr>
    <td align="center" valign="top">
	  <table width="799" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="2"><img src="/images/banner.gif" width="799" height="129" /></td>
  </tr>
  <tr>
    <td width="209" valign="top"><!-- this style and script is generated from nav.html - fireworks export-->
<!--<style type="text/css">
td img {display: block;}td img {display: block;}td img {display: block;}
</style>-->

When I view it from my clients location, I see this:
Code:
<body>
<br />
<br />
<table width="799" border="2" align="center" cellpadding="0" cellspacing="0" class="outerborder">
  <tr> 
    <td aalign="center" valign="top">
   <table width="799" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="2"></td> 
  </tr>
  <tr>
    <td width="209" valign="top"><!-- this style and script is generated from nav.html - fireworks export-->
<!--<style type="text/css"> 
td img {display: block;}td img {display: block;}td img {display: block;}
</style>-->

What would cause this to happen. The page is an asp page, but it doesn't do any heavy duty stuff. Basically - all I do is include the nav buttons on the right side..

Any suggestions?

Thanks in advance
sb
 
It is probably an overzealous antivirus program or a popup/banner blocker program installed on that computer.

___________________________________________________________
[small]Do something about world cancer today: PACT[/small]
 
Did you type that in or actually do a copy/paste? I ask as not only did the image get removed, but "align" seems to have changed to "aalign".

If you copy / pasted it, no popup/image blocker I know would change "align" to "aalign", so it could be a dodgy proxy server or something similar (such as a bad rule in 'Proxomitron').

If you typed it in, and no image / ad blocker is installed, perhaps you could give a more accurate version of the code?

Hope this helps,
Dan




Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Thank you. You guys were correct. It must have been some sort of banner blocker at the location. I renamed the graphic from banner.gif to header.gif and everything viewed as it should.

Thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top