|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Dreamweaver problem?
if you have 2 frames in your page, and the left part of the frameset contains of links...how can i show the page on the rightframe when i click on the link on the left frame?
website design |
|
#2
|
||||
|
||||
|
If you're using two frames, you should specify a frameset and frame tags, like so;
Code:
<frameset rows="6">
<frame name="top" src="header.html">
<frame name="left" src="links.html">
<noframes><body>
<!-- A non-framed version of your page should go in here for browsers that don't support frames -->
</body></noframes>
</frameset>
Then when you create your links in the one frame, specify their target so it's identical to the name of your frame, like so; Code:
<a target="top" href="http://www.tutorialized.com">Tutorialized</a> Hope this helps |
![]() |
| Viewing: Tutorialized Forums > Web Design & Development > Dreamweaver > Dreamweaver problem? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|