Results 1 to 2 of 2

Thread: Can HV be made search engine friendly

  1. #1
    Join Date
    May 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Can HV be made search engine friendly

    I am wondering if it is possible to quote the hv menu

    http://www.dynamicdrive.com/dynamici...menu/index.htm, instead of having to put all the code in every single page.i am trying to make the page as search engine friendly as possible. would i b able to quote the zip file once i have edited it , like this

    desination writen here/scripts/hvmenu.zip

    is there any way i can make it SE friendly?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I have no idea what you mean when you say quote the zip file. Quoting copyrighted works is permitted for limited educational and/or review purposes, but I don't think this is what you are talking about.

    As far as making the menu search engine friendly, it is a script. As such, it will not allow your site to be spidered in the same fashion as hard coded links would. You could include hard coded links on your page(s) in various ways that would be seen only by non-javascript enabled browsers. This strategy will allow at least some spiders to catalogue your site in the normal fashion. It also would allow non-javascript enabled users to navigate your site.

    One of the most spider friendly ways of presenting alternate non-javascript enabled content is to put said content in a division or divisions in the body:

    HTML Code:
    <div class="altscript">
    alternate content goes here
    </div>
    And, in or linked to the head of the page have this script code (here shown enclosed in script tags for use in the head):

    Code:
    <script type="text/javascript">
    document.write('<style type="text\/css">\n\
    .altscript {display:none;}\n\
    <\/style>')
    </script>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •