Domain Empire

Iframe help?

Spaceship Spaceship
Watch

30a

Established Member
Impact
1
Anyone have a good code solution to a seamless quality looking iframe without scrollbars etc? The iframe attributes dont do the trick by themselves.

thank you
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
You need to be more specific, what's the reason you want to use iframes and not something more modern like a div?
 
0
•••
Maybe this would help

Code:
<IFRAME MARGINWIDTH="0" MARGINHEIGHT="0" FRAMEBORDER="0" SCROLLING="no" SRC="PUT HERE THE SOURCE PAGE" width="WIDHT HERE" height="HEIGHT HERE" title="TITLE HERE IF YOU WANT" allowtransparency="true"></IFRAME>

Thanks.
 
0
•••
You need to be more specific, what's the reason you want to use iframes and not something more modern like a div?

I am being as specific as I know how to be. Im no developer by any means... just looking for a good solution. If div is something I can do relatively easily please let me know how.
thanks!

---------- Post added at 11:33 AM ---------- Previous post was at 11:32 AM ----------

Maybe this would help

Code:
<IFRAME MARGINWIDTH="0" MARGINHEIGHT="0" FRAMEBORDER="0" SCROLLING="no" SRC="PUT HERE THE SOURCE PAGE" width="WIDHT HERE" height="HEIGHT HERE" title="TITLE HERE IF YOU WANT" allowtransparency="true"></IFRAME>

Thanks.

that code when implemented gives me a blank page!
 
0
•••
that code when implemented gives me a blank page!

Because you need to change some stuff in there Like the HTML you are trying to embed into the Iframe :)
 
0
•••
0
•••
Yes now play with the Height and Width parameters so they are not smaller then the actual height and width of the page you are trying to embed.

Thanks.
 
0
•••
Ive tried that both, larger and smaller and nothing works. Im sure there is a work around, I just cant find anything on the internet that works.
 
0
•••
Ive tried that both, larger and smaller and nothing works. Im sure there is a work around, I just cant find anything on the internet that works.

What are you trying to accomplish that you need to use iframes?
 
0
•••
What are you trying to accomplish that you need to use iframes?
I am just trying to embed a forum into my website. The website builder is one that is done by modules to create the website for people that dont develop themselves.
 
0
•••
You may want to add parameters to the div where the iframe is located to fix that.

height:""
width:""
left:""
top:""
position:""

etc.

The parameters of the iframe should match of that of the div.

You could also do the whole embedding thing with just a div tag. I also think using an iframe is not a good idea for embedding a forum site. Hmmmmm, I don't really know but try whatever works for you.
 
Last edited:
0
•••
I am just trying to embed a forum into my website. The website builder is one that is done by modules to create the website for people that dont develop themselves.

A forum as in one like this? You'd be better off keeping it separate and adding a "Home" link on the forum than placing an entire forum in an iframe.
 
0
•••
I am being as specific as I know how to be. Im no developer by any means... just looking for a good solution. If div is something I can do relatively easily please let me know how.
thanks!

---------- Post added at 11:33 AM ---------- Previous post was at 11:32 AM ----------



that code when implemented gives me a blank page!

yes it shows a blank page. can you please correct this????
 
0
•••
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back