<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1039015" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1039015</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/open-link-new-window-branded-header#comment-1221825</link>
    <description> &lt;p&gt;It seems your question was never actually answered.  Here are a couple of solutions to your issue.&lt;/p&gt;
&lt;p&gt;The first uses frames, which aren&#039;t exactly urged anymore because there are other ways to produce the same effect, but for what you are trying to do, I don&#039;t see much wrong with them.&lt;/p&gt;
&lt;p&gt;First you need to create the file which will contain your header, and save it probably as &#039;header.htm&#039;.  Then create the actual page which will hold your header and the website together, with the following code (assuming the &#039;header.htm&#039; file is in the same directory as this file:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;!-- Do not include &amp;lt;body&amp;gt; tags in a page that uses regular frames. --&amp;gt;&lt;br /&gt;&amp;lt;frameset rows=&amp;quot;50,*&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;frame src=&amp;quot;header.htm&amp;quot; scrolling=&amp;quot;no&amp;quot; noresize=&amp;quot;noresize&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;frame src=&amp;quot;http://www.webmaster-forums.net&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/frameset&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;If you wanted to achieve something like this where the user can actually input a web address to be shown under your header (or some other method where you have the ability to show a variety of different sites, though not at once, on one page), you can use PHP and set the SRC as a variable which will be retrieved either through the POST or GET method in PHP, assuming you have that installed on the server, like this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$url &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_GET&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;framed&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;];&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;html&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;frameset rows&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;50,*&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;frame src&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;header.htm&quot; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;scrolling&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;no&quot; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;noresize&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;noresize&quot; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;frame src&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;?php echo &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$url&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;; ?&amp;gt;&lt;/span&gt;&lt;/span&gt;&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/frameset&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Therefore, if someone entered the following URL:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.example.com/frames.php?framed=http://www.webmaster-forums.net&quot; class=&quot;bb-url&quot;&gt;http://www.example.com/frames.php?framed=http://www.webmaster-forums.net&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It would have the same effect as the original code I posted.&lt;/p&gt;
&lt;p&gt;The next method is to embed each as objects using none other than the  tag.  The main problem with this is that you would have to set a width and height for each object, and it is hard to specify appropriate heighths to fill the page, and percentages wouldn&#039;t work correctly in all size resolutions and browsers.&lt;/p&gt;
&lt;p&gt;Anywho, if it might work for you, here is the appropriate code, and as you can see, the main advantage is that it takes only one file, unlike the frames method.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$url &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_GET&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;framed&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;];&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;object type=&amp;quot;text/html&amp;quot; data=&amp;quot;header.htm&amp;quot; height=&amp;quot;10%&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;param name=&amp;quot;header&amp;quot; value=&amp;quot;header.htm&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/object&amp;gt;&lt;br /&gt;&amp;lt;object type=&amp;quot;text/html&amp;quot; data=&amp;quot;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$url&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&amp;quot; height=&amp;quot;90%&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;param name=&amp;quot;frameData&amp;quot; value=&amp;quot;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$url&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/object&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Another problem is that you must specify MIME types for the files which are to be embedded, and some pages may be HTML files, some may be PHP files, etc, so a whole slew of if...else situations may be necessary to display the page correctly, and that&#039;s really just a big mess.&lt;/p&gt;
&lt;p&gt;For your situation, I would probably suggest the frames method because it works the easiest for this need.  Good luck with your website, and feel free to contact me if you have any more questions.  I would be more than happy to help.  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 19 Jul 2007 01:51:15 +0000</pubDate>
 <dc:creator>mscreashuns</dc:creator>
 <guid isPermaLink="false">comment 1221825 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/open-link-new-window-branded-header#comment-1221771</link>
    <description> &lt;p&gt;Hi Connie,&lt;/p&gt;
&lt;p&gt;It sounds like you are looking to use frames.&lt;/p&gt;
&lt;p&gt;I think this page is an example of what you are looking to do:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://shops.oscommerce.com/directory/goto,25649&quot; class=&quot;bb-url&quot;&gt;http://shops.oscommerce.com/directory/goto,25649&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 17 Jul 2007 19:04:53 +0000</pubDate>
 <dc:creator>jGirlyGirl</dc:creator>
 <guid isPermaLink="false">comment 1221771 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
