This cannot be done with just HTML but -
The banner, if it is an image and the first image on the top page would be in javascript known as:
Code:
parent.document.images[0]
on a page loaded in the iframe.
So, if you load a page into the iframe, you could put something like so in its body tag:
HTML Code:
<body onload="parent.document.images[0].src='some.jpg';">
It would be better to give the banner image a name and access it that way (avoiding conflicts with images on the content page if it were loaded by itself), ex (on the top page):
HTML Code:
<img src="whatever.jpg" name="banner">
Then it will be know in the iframe as:
Code:
parent.document.images.banner
and accessed via an iframe loaded document's body tag like so:
HTML Code:
<body onload="parent.document.images.banner.src='some.jpg';">
Bookmarks