If you own both pages, the remote page could be redesigned without the unwanted logo. The logo could still appear on that page via its being presented on that site in an iframe under its logo. When it is used as a remote page, it would no longer have this logo.
Another alternative would be via javascript. This would of course not work for those few users without javascript enabled. You could have a script in the head of the remote page:
Code:
<script type="text/javascript">
if (top.location!=location.href)
document.write('<style type="text/css">#logo {display:none;}<\/style>')
</script>
Give the logo or its container the id of 'logo', ex:
HTML Code:
<div id="logo"><img src="logo.gif"></div>
Bookmarks