Milonic provide full featured pull down web menus for some of the worlds largest companies
click here to see what it can do for you

Download Milonic DHTML Menu
Buy Milonic DHTML Menu

Back To Start Of Archive
Taken From The Forum: Anything Goes
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:03

Dynamically Generated Site Index


Poster: benchwarmer
Dated: Wednesday November 17 2004 - 15:51:56 GMT

Since installing the java script we have dropped significantly in our Search Engine Ranking. We had underestimated the weight of this in our rankings and now need to create a dynamic site index for each catagory on our site. The <noscript> tag does not seem to be a feasible solution as we currently have 2300 pages and will be adding approximately 2300 more (parts pages - one page per part we carry).

In addition, the no script tag would create manual changes of all the above pages each time a change was made which is not cost effective. We would be interested in software and/or any other at least semi-automated system.

Thanks for your iput!


Poster: John
Dated: Wednesday November 17 2004 - 16:46:51 GMT

Not really sure why the menu would affect your ranking. Maybe tune-ups of your description and keyword metas, and possibly your title, are in order. The spiders look at those pretty hard.


Poster: benchwarmer
Dated: Wednesday November 17 2004 - 17:29:55 GMT

We haven't changed the meta tags, description title etc. From our research and the article on this site about how search engines can't read java script and layers I sort of have to assume it's the new navigation since they are not linked otherwise.


Poster: John
Dated: Wednesday November 17 2004 - 17:38:16 GMT

Hmmm - how 'bout a basic menu system. Categories rather than all your parts. Call it in using an include statement. Yes, it would involve adding that statement to all the pages, but from then on any changes would only have to be made to one page.


Poster: benchwarmer
Dated: Wednesday November 17 2004 - 17:50:38 GMT

Could you expound on what you mean - I am not sure I am following you. Thanks


Poster: John
Dated: Wednesday November 17 2004 - 22:16:14 GMT

Haven't seen your site, so I have no idea what the menu looks like. However, you mentioned parts, so I ass-umed (hate to do that!) these parts can fall into general categories.

So, going down that guilded path, I thought maybe a general "Table of Contents" kind of thing might do. Place it in a file by itself...
Code:
<a href="category1.htm">Category 1</a><br />
<a href="category2.htm">Category 2</a><br />
<a href="category3.htm">Category 3</a><br />
<a href="category4.htm">Category 4</a><br /> etc.

Then, a couple lines added to each page at the appropriate spot...
Code:
<noscript>
<!--#include file="menu.htm" -->
</noscript>

...would bring in that menu file in case of no JS. Any changes would be made to that one file only, not all of your pages.

Note the include statement may be different for your server.

This make any sense... :?: