css positioning and targeting

liunx

Guest
is there a way in a page layout using css to have a link in one section that opens up in another section of the site, without opening a brand new page? Similar to frames using targeting.<br />
<br />
<br />
kate<!--content-->not as far as i know. now, if you're talking about using DHTML (JavaScript + CSS) to switch display:none around (or something like that), then you got something there.<!--content-->Use iframes:<br />
<br />
<iframe width=150 height=200 src=http://www.htmlforums.com/archive/index.php/"default.html" name="myfr"><br />
</iframe><br />
<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"page1.html" target="myfr">page 1</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"page2.html" target="myfr">page 2</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"page3.html" target="myfr">page 3</a><br />
<br />
Here is a good tutorial:<br />
<!-- m --><a class="postlink" href="http://hotwired.lycos.com/webmonkey/96/37/index2a.html?tw=authoring">http://hotwired.lycos.com/webmonkey/96/ ... =authoring</a><!-- m --><!--content-->Originally posted by kdjoergensen <br />
Use iframes:<br />
<br />
<iframe width=150 height=200 src=http://www.htmlforums.com/archive/index.php/"default.html" name="myfr"><br />
</iframe><br />
<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"page1.html" target="myfr">page 1</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"page2.html" target="myfr">page 2</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"page3.html" target="myfr">page 3</a><br />
<br />
Here is a good tutorial:<br />
<!-- m --><a class="postlink" href="http://hotwired.lycos.com/webmonkey/96/37/index2a.html?tw=authoring">http://hotwired.lycos.com/webmonkey/96/ ... =authoring</a><!-- m --> <br />
<br />
this will work!! you rule,thanks!!<br />
<br />
kate<!--content-->
 
Back
Top