View Full Version : frames


ryuusei_star
02-27-2005, 06:08 AM
how do you make frames with pages appearing in scrollboxes eg. /index.htm has a scrollbox in the center. below the scrollbox is the word "me".("me" links to /aboutme.htm). if you click on "me" /aboutme.htm appears in the scrollbox

how do you do that?

Valkyrie
02-27-2005, 06:15 AM
I think you mean iframes....here's how to make them:
http://www.lissaexplains.com/frames.shtml#inline

ryuusei_star
02-27-2005, 06:33 AM
thanks....btw how do you position the scrollbox?

Valkyrie
02-27-2005, 06:57 AM
Add this to the iframe code and just change the # in bold to your own number:

style="position:absolute; left:# px; top: # px;"

ryuusei_star
02-27-2005, 08:29 AM
what about if i want to put colours for my scroll bar(sry 4 asking so many times)

Red_
02-27-2005, 08:32 AM
Add the scrollbar codes into the pages css.

ryuusei_star
02-27-2005, 08:58 AM
so i just add in the codes somewhere in the css sheet? do i need to add anything else to show its for that scrollbox's codes

Valkyrie
02-27-2005, 09:00 AM
Put it between your <head> </head> tags and it should work. :P

ryuusei_star
02-27-2005, 09:05 AM
do i just type in the scrollbar codes just like that with out adding anything else?

Valkyrie
02-27-2005, 09:42 AM
Yep.

The coding will be something like this:

<head>
<title>Your page</title>

<style type="text/css">

body{scrollbar-face-color : #000000;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #000000;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #000000;
scrollbar-arrow-color : #000000;
}

</style>
</head>

ryuusei_star
02-28-2005, 09:19 AM
oh..thx and sry for the trouble