What is this guy using on his site?

stinger303

Newbie
Joined
May 23, 2010
Messages
26
Reaction score
3
Can you help me understand what this guy is running on his site?

The site is digitalproductsreview . net

Is this just iframes?
 
a content management system then iframing the outgoing pages while keeping his header intact.
 
Did you click a link? How does he have the bar at the top and then the clickbank vendor website within his site.
 
it's an iframe.

heres an example of his page:

Code:
<html>

<head>
<title></title>
 <style type="text/css">
   html, body, div, iframe { margin:0; padding:0; height:100%; }
   iframe { display:block; width:100%; border:none; }
  </style>
</head>

<body>

<div style="height:30px; background-color:#000; color:#fff;">header with his logo and links to navigate back to site</div>

<iframe src="http://www1.shopping.com/" height="100%" width="100%">

</body>

</html>
 
The page (and also esp those pages which display any third-party sales pages) uses I-frame which loads the CB sales page inside the container. :)

The i-frame code is present on all the "link" or inner pages (those specific "link" pages you mentioned) and you can see how he gets the 3rd-party sales pages loaded there, etc.

Use Firebug:
If you can use the Firebug extension on Firefox, you can see the whole code step-by-step and it will also highlight each component as you view the code, thus making it easier to understand how that entire page is put up.
 
Last edited:
Back
Top