View Full Version : errr, targeting div layers...


cowgirl_bebop
06-08-2003, 03:28 AM
is there any possible way to target your links to layers with regular html? i found a way using javascript, but since the page i want to do is on a server that does not allow javascript, i'm kind of stuck.

see this girl has it:
http://www.calgaryplanet.com/members/b/baby_angel21

and i'm stuck figuring out how to do this >_<

zangerbanger
06-08-2003, 03:31 AM
That's an IFRAME not a DIV.

http://www.lissaexplains.com/frames.shtml#inline

cowgirl_bebop
06-08-2003, 03:35 AM
no it's a DIV because on CP you're only allowed one html page, and for an iframe you need two html pages...

pb&j
06-08-2003, 04:54 AM
the example posted in the question is using regular frames.

<html>
<head>
<title>Welcome to CalgaryPlanet.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="84,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="http://www.calgaryplanet.com/headerfr.htm" name="header" scrolling="NO" noresize frameborder="NO">
<frame src="http://www.calgaryplanet.com/members/b/baby_angel21/index.html" name="main" noresize>
</frameset>
<noframes><body bgcolor="#FFFFFF" text="#000000">
</body></noframes>
</html>

MaGiCSuN
06-08-2003, 12:50 PM
Originally posted by cowgirl_bebop
no it's a DIV because on CP you're only allowed one html page, and for an iframe you need two html pages...

div boxes cannot be targetted in any way, so it must be frames or iframes. :) Like pb&j posted, that's the code the page is using.

Love,
Mirna