HTML Help Forum HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

Text box within a layer
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum -> HTML Frame
View previous topic :: View next topic  
Author Message
Samuel Jong



Joined: 06 Jan 2008
Posts: 113

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: 8748
Location: Castle Pines North, CO USA

Posted: Sat Apr 05, 2008 8:18 am      

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.

_________________
Corey
Residential Office Solutions | Mile High Merchant Accounts | Expression Web Blog
Samuel Jong



Joined: 06 Jan 2008
Posts: 113

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: 113

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: 8748
Location: Castle Pines North, 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
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum -> HTML Frame
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group