| Tripredacus-X 2004-02-27, 5:44 pm |
| quote: Originally posted by Medion
How do I get the framest to load when I click on the Logo?
So you have (index.html) that has (image.jpg) that links to (frameset.html)
On the index, set the link target to "_parent" or "_self"
On the linked page, create the frameset within.
On Each frame needs to have a name. Call them Frame1 and Frame2 for example. Each frame needs to have another HTML file open inside of it. create those two pages. example code for you:
(index.htm)
<html>
<head>
</head>
<body>
<a href="frameset.html"><img src="images/index/logo.jpg" width="356" height="66" border="0" target="_parent"></a>
</body>
</html>
(frameset.html)
<html>
<head>
</head>
<frameset cols="40%, 60%">
<frame name="left" src="left.html">
<frame name="right" src="right.html">
</frameset>
</html>
Then create the left and right pages with whatever you want but you must also keep in mind that scrollbars will appear if you make the pages wider than the percentages you give the frameset to use. |