 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
Samuel Jong
Joined: 06 Jan 2008 Posts: 79
|
Posted: Fri Apr 04, 2008 8:06 pm Text box within a layer |
|
|
|
How to make a text box with a vertical scroll bar inside a layer? And the text inside the box will a link to other htm page.
I want to send the image to show for what I want. How? |
|
Corey Bryant

Joined: 15 May 2004 Posts: 8154 Location: Castle Rock CO USA
|
|
Samuel Jong
Joined: 06 Jan 2008 Posts: 79
|
Posted: Sat Apr 05, 2008 2:06 pm |
|
|
|
| Corey Bryant wrote: |
Use something like
| Code: |
<iframe name="I1" id="I1" src="test.html">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe> |
and rename the iframe as you wish.
|
First I insert a layer in the main page, then I isert the iframe into the layer.
Now how to insert the text in the ifamre, for examples:
The Photo Galery which links to galery.htm
The Articles which links to articles.htm
The Music which links to music.htm
But must have a vertical scroll bar at the right side.
Thanks in advance. |
|
Samuel Jong
Joined: 06 Jan 2008 Posts: 79
|
Posted: Sat Apr 05, 2008 3:25 pm |
|
|
|
| Samuel Jong wrote: |
| Corey Bryant wrote: |
Use something like
| Code: |
<iframe name="I1" id="I1" src="test.html">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe> |
and rename the iframe as you wish.
|
First I insert a layer in the main page, then I isert the iframe into the layer.
Now how to insert the text in the ifamre, for examples:
The Photo Galery which links to galery.htm
The Articles which links to articles.htm
The Music which links to music.htm
But must have a vertical scroll bar at the right side.
Thanks in advance. |
I want the screen displays like this:
-------------------------------
New Postings
06 Apr 2008 The Photo Galery
05 Apr 2008 The Articles
03 Apr 2008 The Music
-------------------------------
But when we scroll down and the text New Postings still remains. Thanks. |
|
Corey Bryant

Joined: 15 May 2004 Posts: 8154 Location: Castle Rock CO USA
|
Posted: Sun Apr 06, 2008 2:25 pm |
|
|
|
You could just use regular frames
| Code: |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled 3</title>
</head>
<frameset rows="64,*">
<frame name="header" scrolling="no" noresize="noresize" target="main">
<frame name="main">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html> |
Or use a scrollable <div>
_________________
Corey
Toll Free Solutions | Mile High Merchant Accounts | Expression Web Blog |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|