Ad Requirements

Status
Not open for further replies.

max_buutz

New Member
Messages
12
Reaction score
0
Points
0
First off: I am all for supporting x10hosting and am willing to do all that is required of me in terms of advertising.

Here is the situation

On my website I host games etc. I also host screenshots of those particular games, allowing people to view them before they download.

Anyway, the screenshots of each game is accessable via a link near the game's description. Normally you might simply link directly to the image/screenshot, however I would prefer a not to. When you link directly to the image, it opens in a full-size browser window, and is mainly filled with white-space.

As an alternative, I dynamically (correct word?) create and open my own windows using javascript:

Code:
	var win = window.open('','',size);
	win.document.writeln('<html><head><title>Image Viewer</title></head>');
	win.document.writeln(<body>'<img src="' + path + '">');

	win.document.write('</body>');
	win.document.close();

The only purpose of these windows is to show the screenshot. Now, I have attempted to pass the ad code to the new window with no avail. Thus, currently I do not have the ad code on these pages.

Is this against the rules? As the "image viewer" pages do not actually exist, must I add the ad code somehow?

As an alternative, I have thought of direct linking to the images themselves, and resizing the window using javascript (this still leaves a white border). Must I do this? And is this allowed?
 

o0slowpaul0o

New Member
Messages
254
Reaction score
0
Points
0
Couldn't you just use the Random Images, in the turtorials section? Then you could just add the ad's in header or footer.
 

max_buutz

New Member
Messages
12
Reaction score
0
Points
0
Hmm... Possibly.

What I am mainly aiming for is a simple method for letting links open new windows containing different screenshots.

With my method it is quite easy:

HTML:
<a class="ilink" onClick="image_click('240','352','images/games/atmos/atmos_screen1.png')">

Thus, I can easily change what image each link produces.

I had a look at the Random Images tutorial just now, and I'm not sure if it is what I am looking for. I do not want to actually have the image on the page itself, but rather be opened by a link.

If anyone wants an example of what I am talking about, you can visit my site at: www.egames.x10hosting.com/games.html

Just try clicking one of the screenshot links and you will see what I want.
 

Corey

I Break Things
Staff member
Messages
34,553
Reaction score
204
Points
63
You don't need to put the ads on the screenshots if it's just showing the picture.

-Corey
 
Status
Not open for further replies.
Top