Quote:
Originally Posted by georgeyw
What about having the gallerys leave the frame when there is a click on a sponsor link?
I do not see the use in keeping the frame when the person leaves the site.
|
Would be a very good idea if it were technically possible to do that from my end... unfortunately it's not. I will put something on the submit page about it to let people know how they can open sponsors in a new window and such. It's really not such a big deal. I don't think so at least ;-)
so, all sponsor links in a new window
<a href='http://sponsor.com' target='_blank'>sponsor</a>
or in the top frame
<a href='http://sponsor.com' target='_top'>sponsor</a>
or even better (cause I'm really not the only one sending traffic in a frame) put this on your paysite (don't use this on your gallery, we can't review your gallery if this is on there):
<script>
If( parent.document.location != self.document.location )
parent.document.location.replace = self.document.location;
</script>
didn't check it, so try it out before you put this one ;-)