Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
IFrame Problems HELP?(insert info from another page)
Old 12-15-2010, 11:23 AM IFrame Problems HELP?(insert info from another page)
Junior Talker

Posts: 2
Name: James
Trades: 0
Can anyone please help me. I would like to try make a page and pull information from another website onto my website. I have tried to use IFRAME but it pulls in the entire website. How do I just select one piece on the other website like a graph, or calculator, etc??????

SAMPLE:

How would I pull just the calculator from the page below and put it on my page???

http://www.moneychimp.com/features/tax_calculator.htm


Thanks
James
majorjcyoung is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-15-2010, 12:36 PM Re: IFrame Problems HELP?(insert info from another page)
Experienced Talker

Posts: 43
Trades: 0
You can do this with placing the iframe in a container and adjust it with css. I used it many years ago to collect some live tickers.

Code:
<style type="text/css">
<!--
#container{
    width:530px;
    height:730px;
    border:1px solid #000; 
    overflow:hidden;
    float:left; 
    margin-left:10px;
    background-color:white; 
}
#container iframe {
    width:650px;
    height:1550px;
    margin-left:-130px;
    margin-top:-300px; 
    
 }
-->
</style>
<div id="container">
<iframe src="http://www.moneychimp.com/features/tax_calculator.htm" scrolling="no"></iframe></div>
Adjust and play with the css, should give you a good starting point to get what you want to do.
TheSir is offline
Reply With Quote
View Public Profile
 
Old 12-15-2010, 01:41 PM Re: IFrame Problems HELP?(insert info from another page)
Junior Talker

Posts: 2
Name: James
Trades: 0
Thank you so very much!!!!! Your awesome!!!
majorjcyoung is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to IFrame Problems HELP?(insert info from another page)
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.51239 seconds with 12 queries