I want to add an HTML item to a few pages within my website. I was hoping there was a way I could have it display on all of the pages I choose, and be updated on all of them when I change it. It would be too much for me to change it manually, as I will be putting it on 10+ pages. The HTML item is a drop down link box. You can see the box at the top of this page. I want to have it show on each of the pages linked inside of it for easy player navigation on my personal trading card site. http://gamers2008.info/mainwhitesox.htm I am using Microsoft Web Expression if that helps. I have saved the box as an HTML file through notepad, and used the insert file option, but the box does not update as I update the HTML file. Thank you for any help.
If your web server supports server side includes (often .shtml files), you could maybe add in header, nav, footer includes into your 10+ pages and then you can update them all easier by just modifying one file or so. To add the includes into your site in bulk, try the search and replace across multiple files feature in Notepad++
It depends on what you want to display. If it is just text or images then store whatever in a php file and include it: welcomemessage.php index.php You can use the code <?php include"welcomemessage.php";?> on any pages you like.