Ok guys. I am still relatively new to website design. Here is my issue: Is there a way to create a menu that will display on all pages, but you can edit it in one place without having to edit each individual page? I don't want to use frames either. Div tags maybe?
Well if your server allowes server side programming (e.g PHP, ASP etc) you can make a file with the menu and include it on every page. I'm sure this have been discussed several times so you might just search this forum... EDIT: Have a look here: http://forums.digitalpoint.com/showthread.php?t=223056&highlight=server+side+includes
It's possible to do, but if you're new to web design it might be a little too complex of a problem to tackle. It's good that you're thinking this way though. Div tags won't help. You'll probably have to use a scripting language like PHP or ASP -- depending on what's available on your server. Or maybe if you're using Dreaweaver you can use their library files feature. It'll help get your question answered if you can say something about what kind of web server you're on and what kind of software you might be using.
I have hosting with godaddy. Its a linux server. I haven't seen a CMS I was really happy with though. I want to make adsense blend in with the site, so I'm going to modify a template I've made. I just want to resolve this menu issue for this and future projects.
Use a PHP include for your page is your not using like Wordpress ro any CMS Divide your page into Header, Content, Footer.
i think u can do it by creating a script menu..and save as a script file and then use thins file`s address in all pages...when u will edit this script and change any thing..all pages will automatically show changes
If you're thinking of using JavaScript for this, you COULD do that, but if you do it won't be accessible to search engines, people with disabilities, people who have (or want) to use the keyboard for navigating through a Web site, people using a browser that doesn't support or have JavaScript enabled, and those who have a JavaScript capable browser that just happened to have the script stripped by a firewall before receiving it. In other words, don't do it that way.
create an 'include file' a page which holds the code for the menu then just reference it in all pages. if you need to change menu, you just change that one menu page and all the others will reflect the changes