something in the code above needs to point to the files indexframe.htm and choose.htm but haven't been able to determine where to place in code. thanks for any help.
I think you're getting confused with terminology here. CSS "frames" aren't just a replication of HTML framesets in a different "language". What ddadmin is showing there is how to replicate the look of using a frameset with plain ol' HTML and CSS to combat all the negative side-effects of using frames.
So, there is no "pointing" to external files. You have to directly include the markup of those external files into one HTML file.
So, take everything between the <body> tags in your "indexframe.html" and paste it in place of the highlighted:
Code:
<div id="maincontent">
<div class="innertube">
<h1>Dynamic Drive CSS Library</h1>
<p><script type="text/javascript">filltext(25)</script></p>
<p style="text-align: center">Credits: <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></p>
</div>
</div>
If you're including any javascript and/or external CSS files in your indexframe.html or choose.html files, be sure to include those within the <head> section of this new page.
And take everything in the <body> of "choose.html" and paste it in place of the highlighted below:
Code:
<div id="framecontent">
<div class="innertube">
<h1>CSS Right Frame Layout</h1>
<h3>Sample text here</h3>
</div>
</div>
Bookmarks