OK, the 'main' problem is that you have to frames named 'main'. Your very top page is a frameset with one frame named 'main':
Code:
<html>
<head>
<title></title>
<META NAME="description" CONTENT="">
<META NAME="keywords" CONTENT="">
<META NAME="revisit-after" content="5 days">
</head>
<frameset rows="100%,*" framespacing="0" border="0" frameborder="0">
<noframes>
<body bgcolor="" text="">
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
<frame name="main" src="http://simplytuts.co.uk/sensations" scrolling="auto">
</frameset>
</html>
In that we have:
Code:
http://www.simplytuts.co.uk/sensations/homepage.html
On that page we have an iframe with the same name:
Code:
<IFRAME style="LEFT: 430px; POSITION: absolute; TOP: 202px" border=0 name=main src="http://www.simplytuts.co.uk/sensations/updates.html" frameBorder=0 width=180 scrolling=yes height=300 allowTransparency></IFRAME>
All of those links target 'main', but the browser is going for the first one. If you change its name to:
Code:
<html>
<head>
<title></title>
<META NAME="description" CONTENT="">
<META NAME="keywords" CONTENT="">
<META NAME="revisit-after" content="5 days">
</head>
<frameset rows="100%,*" framespacing="0" border="0" frameborder="0">
<noframes>
<body bgcolor="" text="">
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
<frame name="mainTop" src="http://simplytuts.co.uk/sensations" scrolling="auto">
</frameset>
</html>
things should work out much better.
Bookmarks