Results 1 to 3 of 3

Thread: Remove frame

  1. #1
    Join Date
    Jun 2006
    Posts
    42
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default Remove frame

    Hello all

    I have a website (MyWebsite) which is redirected by another website (TheWebsiteWhoRedirect.com) who add an annoying frame at the top of my website here is the code :

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
    <html>
    <head>
    <title>MyWebsite - Redirect by TheWebsiteWhoRedirect.com</title>
    <meta name="keywords" content="MyContents">
    <meta name="description" content="MyDescription">
    <meta name="revisit-after" content="1 days">
    <meta name="robots" content="ALL">
    </head>
    <frameset rows="23,*" frameborder="NO" border="0" framespacing="0">
    <frame name="ad" src="http://TheWebsiteWhoRedirect.com/frame.html" noresize scrolling="no">
    <frame name="main" src="MyWebsite ">
    </frameset>
    <noframes>
    <body bgcolor="#FFFFFF" text="#000000">
    <a href="MyWebsite ">Click here to continue to MyContents</a>
    </body>
    </noframes>
    </html>
    is there a javascript code i could add to MyWebsite/index.html or how could i write a specific css to remove or reduce the frame "ad" as i don't have access to the page where the code above is located.

    Any advice would be helpfull

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    You could try adding a break out of frames JavaScript to the top of your page.

  3. #3
    Join Date
    Jun 2006
    Posts
    42
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default

    Thank you very much ddadmin works great

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •