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
Help Please!! Iframe Problem
Old 01-13-2008, 10:25 PM Help Please!! Iframe Problem
Novice Talker

Posts: 11
Trades: 0
Just finished making my webiste but i have a problem getting the pages to load inside the frame. The links at the top of the page are inside a frame and so is the information below which is were i want the information to load as seen here:

www.jonnyrowan.com

so i want the links on http://www.jonnyrowan.com/frame1.html to load up inside http://www.jonnyrowan.com/intro.html

Is this possible? please help.

thanks
yiddojonny is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-13-2008, 10:45 PM Re: Help Please!! Iframe Problem
itHighway's Avatar
Skilled Talker

Posts: 83
Name: Zeeshan Dar
Location: GUJ
Trades: 0
You need to define target frame in Top links.
__________________
Zeeshan Dar
itHighway -
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
itHighway is offline
Reply With Quote
View Public Profile
 
Old 01-13-2008, 10:50 PM Re: Help Please!! Iframe Problem
Novice Talker

Posts: 11
Trades: 0
i've tried that but it doesn't seem to work
yiddojonny is offline
Reply With Quote
View Public Profile
 
Old 01-13-2008, 11:15 PM Re: Help Please!! Iframe Problem
Skilled Talker

Posts: 52
Name: Dustin
Trades: 0
Yeah he's right. In your top iframe, make it so your links target your "iframemain" iframe: <a href="page.html" target="iframemain">Link Here</a>

Works perfect for me.
__________________

Please login or register to view this content. Registration is FREE
TributeK is offline
Reply With Quote
View Public Profile
 
Old 01-13-2008, 11:30 PM Re: Help Please!! Iframe Problem
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
WHY are you using iFrames at all ? They're horrible for page load and worse for search engines !
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 01-14-2008, 07:42 AM Re: Help Please!! Iframe Problem
Novice Talker

Posts: 11
Trades: 0
Quote:
Originally Posted by TributeK View Post
Yeah he's right. In your top iframe, make it so your links target your "iframemain" iframe: <a href="page.html" target="iframemain">Link Here</a>

Works perfect for me.
Got it working - thanks very much for your help!

Last edited by yiddojonny; 01-14-2008 at 07:54 AM..
yiddojonny is offline
Reply With Quote
View Public Profile
 
Old 01-18-2008, 07:31 PM Re: Help Please!! Iframe Problem
Junior Talker

Posts: 2
Name: Bob
Trades: 0
Quote:
Originally Posted by LadynRed View Post
WHY are you using iFrames at all ? They're horrible for page load and worse for search engines !
Hi LadyinRed - I joined after a search and found iframe talk here. Your point is popular in forums, but I built a site for our business using a lot of iframes, and I believe it is a good site. I have no difficulty loading and have added text to index pages to be found on search engines.

Here's the question: Since I'm such a newbie to html and must rely on forums for help, what are the alternatives to give me similar functionality? Can I use blocks or divs in tables? Some forums claim that tables are bad and css is King. I am looking for ideas now because I want to do a face lift to make the site a little sweeter and will be introducing video soon. I expect to learn more css but can't see that helping in this area.

Your thoughts and any links would be appreciated.
bsquared is offline
Reply With Quote
View Public Profile
 
Old 01-18-2008, 10:06 PM Re: Help Please!! Iframe Problem
Skilled Talker

Posts: 52
Name: Dustin
Trades: 0
You can use server side includes. The only one I know how to use is <!-- #include virtual="page.html" -->. You can use SSI in php and I'm sure several other languages. You basically section off your layout and save those sections to individual html files. It would look similar to this:

<html>
<head>
<title>Title</title>
</head>
<body>

<!-- #include virtual="header.html" -->

<!-- #include virtual="leftmenu.html" -->

<!-- #include virtual="content.html" -->

<!-- #include virtual="rightmenu.html" -->

<!-- #include virtual="footer.html" -->

</body>
</html>


That way you can edit the code for one of those sections and it fixes every page. The only thing about this is that a new page will load if you want to show new content, but that's the way most sites work anyway. I would rather do something similar to this than take a chance at missing out on those people who can't view frames/iframes.
__________________

Please login or register to view this content. Registration is FREE
TributeK is offline
Reply With Quote
View Public Profile
 
Old 01-19-2008, 11:46 AM Re: Help Please!! Iframe Problem
Junior Talker

Posts: 2
Name: Bob
Trades: 0
Tributek - thanks for your response. I had never even heard of SSI (while I'm not new to computing, I am to web). After searching the web and DreamWeaver Help, it does look promising. Troubling is DreamWeaver comment that it slows page loading as I have plenty to load.

The thing is that I use a menu across the top and a slashdot menu in the left sidebar of each page (both in table cells). Probably just easier to see what I'm trying to say: www.mcgymswim.com. Aside form the nav bars (which I doubt would qualify for SSI) all of the content is unique to the category found in the top nav bar.

Your thoughts are appreciated.

Quote:
Originally Posted by TributeK View Post
You can use server side includes. The only one I know how to use is <!-- #include virtual="page.html" -->. You can use SSI in php and I'm sure several other languages. You basically section off your layout and save those sections to individual html files. It would look similar to this:

<html>
<head>
<title>Title</title>
</head>
<body>

<!-- #include virtual="header.html" -->

<!-- #include virtual="leftmenu.html" -->

<!-- #include virtual="content.html" -->

<!-- #include virtual="rightmenu.html" -->

<!-- #include virtual="footer.html" -->

</body>
</html>


That way you can edit the code for one of those sections and it fixes every page. The only thing about this is that a new page will load if you want to show new content, but that's the way most sites work anyway. I would rather do something similar to this than take a chance at missing out on those people who can't view frames/iframes.
bsquared is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Help Please!! Iframe Problem
 

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.32268 seconds with 12 queries