Link to home
Start Free TrialLog in
Avatar of oS_Narley
oS_Narley

asked on

Remove .tk frame

Hi,

I have a website on a personal webserver which is banner free, as this hosting is on a personal server the websites address is a ip, which is very long and un-attractive, so i signed up for a .tk free domain name, but this free domain adds a frame to the site to show banners, i was hoping for a solution to remove this frame, i have had a look on the net, but found no results to this problem, i have found some interesting javascript solutions, but these do not work, i have tryed:

<head>
<script language="JavaScript" type="text/javascript">
<!--
function breakout_of_frame()
{
  // see http://www.thesitewizard.com/archive/framebreak.shtml
  // for an explanation of this script and how to use it on your
  // own website
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
-->
</script>
</head>

but with no luck, if there is no way to remove the frame, perhaps there maybe a way to shrink the frame.

Any feedback would be very much appreciated

From

oS_Narley
ASKER CERTIFIED SOLUTION
Avatar of rangasuman
rangasuman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of oS_Narley
oS_Narley

ASKER

Thanks very much worked like a charm, rangasuman.