Kendra,
Using the <noscript> tag *should* work. One thing that you sould be aware of that I learned the hard way: If you are turning off Javascript in IE and testing LOCALLY, it will not work. For reasons that I do not know, IE only disables JS on live internet, not on local copies.
Try using Firefox or Opera and disable JS with those. It'll work on the local copy. To see an example, you can try two of my sites. One is my own homepage and the other is a school website that I'm working on:
http://home.comcast.net/~vikenk (my site)
http://www.ssaes.org/test_site (school site, unfinished)
If you view the source, you can see how I've implemented the <noscript> tag. Basically, you want to use tables or lists inside the <noscipt> tag. In my case, I've placed them in <div>'s or <tables>. For example:
Code: Select all
<noscript>
<div id="noscript_menu">
<ul>
<li>Link 1</li>
<li>Link 2</li>
<li>Link 3</li>
</ul>
</div>
</noscript>
Hope this helps.
Viken K.