I want to put my links into a frame so they won't clutter the page. http://www.hostscorpion.com can someone explain how to do this in dreamweaver? thanks
You can do that using Server Side Includes (SSI) and PHP or Javascript include. Here is a example code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title></title> <meta name="keywords" content=""> <meta name="description" content=""> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="shortcut icon" href="favicon.ico"> <link rel="stylesheet" href="styles.css" type="text/css"> </head> <body> <div align="center"> <!--#include file="header.ssi" --> <table width="1000" align="center" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top" style="text-align: left; width: 225px; padding:5px; "><!--#include file="left.ssi" --></td> <td valign="top" style="width: 5px;"> </td> <td align="left" valign="top" style="width: 770px;"><div style="height:5px; "><!-- Main Contents Goes Here --></div> </td> </tr> </table> <!--#include file="footer.ssi" --> </div> </body> </html> HTML: