That's really not such an odd request, menus at least should be accessible for non-javascript enabled browsers, which include screen readers for the blind and others challenged either physically or via the equipment available to them for browsing the internet, may require non-javascript enabled navigation of your site.
About Google, it probably cannot tell the site is inaccessible to non-javascript enabled browsers. If it can, I'm not sure if it would affect your ranking or not.
To make the menu non-javascript accessible, remove:
Code:
div.sdmenu div.collapsed {
height: 25px;
}
from your sdmenu.css file. This will mess up the menu for javascript enabled folks though, so add the style back via javascript (in the head of your page, or just add its highlighted code to the very top of the sdmenu.js file):
Code:
<script type="text/javascript">
if (document.getElementById)
document.write('<style type="text/css">div.sdmenu div.collapsed {height: 25px;}<\/style>');
</script>
In future, please post about Dynamic Drive Scripts in the Dynamic Drive Scripts Help section here where I've moved this thread, and:
Warning: Please include a link to the DD script in question in your post. See
this thread for the proper posting format when asking a question.
Bookmarks