hi, i search thought the net, and i cant find the exact code. i believe the actually coding is jz need one or two correct CSS command. Can someone tell me how to create the effect that like the link below? http://dynamicdrive.com/dynamicindex1/omnislide/index.htm I need the top menu ALWAYS at the bottom. Can someone tell me the CSS/JS command to be use? Thanks
You don't need JavaScript for that. Just HTML and CSS. Second, I strongly advise against using JavaScript based menus that won't work without JavaScript either enabled or supported by the browser since they're inaccessible to people who can't or won't enable JavaScript and browsers that don't support it to begin with, search engines won't be able to tell your pages are there (meaning they won't get indexed), and people may find them to be difficult to use (believe it or not). If you want to use CSS for this, just use position: fixed; on the HTML container that's holding the menu (should be an unordered list since it's a list of menu options), and then set the position to where you want it. Internet Explorer 6 doesn't support this CSS property, but it can be faked if you're careful about how you go about it.