April 21, 200917 yr Hi, I've recently signed up for a blog at MLB Blogs (http://ukyankee.mlblogs.com), and I want to create a page where the blog is included in a page with my own banner. I've been able to do it here http://www.ukyankees.com/test.php however when you click on a link, it goes away from the page with my banner. Is there any way to create an include where when a link is clicked on, it will keep my banner? Thanks in advance! Griffin
July 3, 200917 yr Hi, I've recently signed up for a blog at MLB Blogs (http://ukyankee.mlblogs.com), and I want to create a page where the blog is included in a page with my own banner. I've been able to do it here http://www.ukyankees.com/test.php however when you click on a link, it goes away from the page with my banner. Is there any way to create an include where when a link is clicked on, it will keep my banner? Thanks in advance! Griffin how do you include the extarnal page to your? by serverside script? you should use frames: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <frameset rows="80,*" frameborder="no" border="0" framespacing="0"> <frame src="yourBannersPage.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" /> <frame src="http://external.domain.com/page.html" name="mainFrame" id="mainFrame" title="mainFrame" /> </frameset> <noframes><body> <!-- if frames are disabled in the user browser, the display here a message, or redirect, to the external page, or what ever --> </body></noframes> </html>
Create an account or sign in to comment