WebGuerrilla

msg:90210 | 9:52 pm on Oct 28, 2004 (gmt 0) |
Google devaluing no frames isn't anything new. Try writing your frameset with an external JS file. Doing that will eliminate the code that indicates you are using a frameset. I bet you will see an improvement.
|
trimmer80

msg:90211 | 1:14 am on Oct 29, 2004 (gmt 0) |
are to referring to this : If I take a normal frameset : <frameset rows="130,*,45" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize> <frame name="header" src="header.html" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize> <frame name="main" src="main.html" marginwidth="0" marginheight="0" scrolling="auto" framespacing="0" frameborder="0" noresize> <frame name="footer" src="footer.html" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize> </frameset> <noframes> bot friendly navigation </noframes> |
| And change it to this : <script language="JavaScript" src="frameset.js" type="text/javascript"> bot friendly navigation <script language="JavaScript" src="endnoframes.js" type="text/javascript"> |
| frameset.js document.write('<frameset rows="130,*,45" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize><frame name="header" src="header.html" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize><frame name="main" src="main.html" marginwidth="0" marginheight="0" scrolling="auto" framespacing="0" frameborder="0" noresize><frame name="footer" src="footer.html" marginwidth="0" marginheight="0" scrolling="no" framespacing="0" frameborder="0" noresize></frameset><noframes>'); |
| endnoframes.js document.write('</noframes>'); |
| This will make the bot think that the frameset does not exist and follow my bot friendly links as the only links on the page. If this is what you meant then isn't this cloaking?
|
DavidT

msg:90212 | 3:21 am on Oct 29, 2004 (gmt 0) |
Googlebot will crawl and index pages referenced in the frame src=page.html tag. you dont need anything in the no-frames area strictly speaking, this is nothing new.
|
|