Getting rid of FRAMES

  • Thread starter Thread starter SFG
  • Start date Start date
S

SFG

Web site http://www.templebethor.com

I had a website that I made using FRAMES. The top and left columns were
frames that were stationary and the body scrolled. I had enough complaints
about the frames so I deleted the top and left frames and now use shared
borders that simply scroll with the page.

The site works well - however there still appears to be remnants of the
frames in the HTML. Some search engine qualifiers still complain that the
site uses Frames making it harder to index.

How can I totally eliminate the frames.

Thanks in advance -
 
What do you mean by "remnants of frames", can you provide an example?

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
If I look o nthe HOME PAGE I find things like the following --
===============================================

<frameset rows="9*" framespacing="0" border="1" frameborder="0">
<frame name="main" src="Front_components/F-body/FRONT.htm"
scrolling="auto" target="_self" noresize marginwidth="0" marginheight="0">
<noframes>

<p>This page uses frames, but your browser doesn't support them.</p>

</td></tr><!--msnavigation--></table></body>
</noframes>
</frameset>
============================================================

One of the search engine analyzers is telling me that there are frames in
the web.

Thanks for looking at this.
 
Remove the following line of code in HTML View:

<frameset rows="9*" framespacing="0" border="1" frameborder="0">
<frame name="main" src="Front_components/F-body/FRONT.htm"
scrolling="auto" target="_self" noresize marginwidth="0" marginheight="0">
<noframes>


<p>This page uses frames, but your browser doesn't support them.</p>


</noframes>
</frameset>

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Back
Top