Forum Moderators: open

Message Too Old, No Replies

How to do this Frame here?

not full screen frame.

         

k3nn4

6:05 pm on Aug 20, 2005 (gmt 0)

10+ Year Member



Hi guys, I'm just wondering that how can I create a Frame page with Width(700px) and Height(500px)

Not full screen frame.

Any PROs here please help me?

Thank you very much.

tedster

6:21 pm on Aug 20, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



There are two approaches I can think of. One is to position an iframe (inline frame) of those dimensions where you want it in the window. And the second would be to create a regular (full screen) frameset and place blank or empty color frames surrounding the content frame of your chosen dimensions.

k3nn4

4:39 am on Aug 21, 2005 (gmt 0)

10+ Year Member



Hi there, Yeah i need this....

One is to position an iframe (inline frame) of those dimensions where you want it in the window.

can you help me out?

tedster

5:46 am on Aug 21, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



First, set up your page layout using tables or divs as is your preference. Then in the table cell or div where you want the iframe to show up:

<iframe id="hotspot" src="starterpage.html"></iframe>

Then in the links that you want to have change the iframe's content, include a target="hotspot" attribute in the anchor tag.

Be warned that search engines will not index the entire window's content as one page -- because the iframe's content is really in a different html document. So search engines will probably send traffic directly to the page you intended to be shown inside the parent page. You should account for this, either with some scripting to put the orphaned page back in its iframe, or at least some friendly links that will let visitors load some configurations of the parent page (use target="_top") if they continue to explore the site.

There are more fine points and possible attributes to learn about iframes. Some good information here (as usual):
[w3schools.com...]

An online demo to play around with:
[w3schools.com...]

k3nn4

10:02 am on Aug 21, 2005 (gmt 0)

10+ Year Member



Hrmm.. This is what I need actually..

[w3schools.com...]

any PROs or admin teach me?

Thanks

tedster

6:32 pm on Aug 21, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



That's a very good place to learn. You can do a Google search on the words inside these brackets:

[frame noresize site:w3schools.com]

And because the term [nblue]site:w3schools.com[/blue] is included you will get only pages on w3schools that talk about frame and noresize. You can also use that kind of search for any domain name, including WebmasterWorld, to do a nice focused search on whatever topic you are investigating.

k3nn4

11:40 am on Aug 22, 2005 (gmt 0)

10+ Year Member



tedster: I've been trying to learn and play around on www.w3school.com but still failed to do it..

So, I'm just hope you can be kind and tell me the code of it?

I'm in need to help my friend's shop to create it ..

Thanks

k3nn4

3:11 pm on Aug 22, 2005 (gmt 0)

10+ Year Member



ok, I had already figure out but another problem come to me again ...

which is bolder... I had set no bolder but still came out like bolder size=2

:(

encyclo

6:34 pm on Aug 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Firstly, check your spelling: border not bolder. Secondly, you should set both the
border
and
frameborder
attributes to zero if you don't want any border at all.