[introductory rant]
I hate html! Hate hate hate hate hate it! Designing anything in html is like slicing cheese with a wooden knife!
[/introductory rant]
So…I need frames. I need to put some explanatory and instructional stuff, along with a couple buttons, in a narrow column to the left, while a different page (the one they came from, for purposes similar to the display of posts in a thread that are visible below the posting window when you add a post to a thread) is displayed in a separate frame to the right.
I’ve never put frames on my web site. They were disgustingly trendy for awhile, and usually used to truly vile effect, which turned me off to them. So I never learned how. Sort of assumed it would be easy enough–I’d just do it in PageMill, then look at the underlying HTML to see how one sets up a page like I needed, then reproduce that basic code in BBEdit.
Well, ummm…I, uh, it appears that I’m too stupid to set up frames in PageMill.
So I went to a site I knew that uses frames (one across the top=banner ad, most of page taken up by main page, narrow column at right serves as Subject index) and looked at their source code and it said:
<html>
<head>
<title>Site Title</title>
</head>
<frameset ROWS=“68,*” BORDER=YES FRAMEBORDER=1>
<frame SRC=“tfttop.html” NAME=“adbanner” MARGINWIDTH=5 BORDER=YES>
<frame SRC=“tft1001.html” NAME=“tftpage” MARGINWIDTH=3 BORDER=YES>
</frameset>
</html>
Somehow that doesn’t help anywhere near as much as I thought it would.
Can anyone point me to (or write) a Frames For Dummies kind of primer for this?