| | |||||
| ||||||||
| Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Using iframes I have never used iframes in my designs before, but I have the need to use it in one of my projects now. My question is, what are the negatives to using iframes? Are there any compatibility issues with browsers? Are there any particular issues or reasons not to use iframes? Thanks for any insight.
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- |
| |
| | #2 (permalink) |
| olrayts riserb Join Date: Apr 2004
Posts: 946
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | use php includes instead of using iframes.. spiders will have a hardtime crawling them.
__________________ http://www.travelmedical.info |
| |
| | THREAD STARTER #3 (permalink) | ||||
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Thanks, but that's like asking me to speak chinese :-) I'll have to look for a "PHP includes" tutorial.
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- | ||||
| |
| | #4 (permalink) |
| olrayts riserb Join Date: Apr 2004
Posts: 946
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | you have to change the main file to .php if your still using .html and heres the code <?php include '--the link--'; ?>
__________________ http://www.travelmedical.info |
| |
| | THREAD STARTER #5 (permalink) |
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | That's it?? Wow... I'll give it a go. Thanks a million.
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- |
| |
| | #6 (permalink) |
| NamePros Regular Join Date: Apr 2005
Posts: 263
![]() ![]() | Anyway if you wanna try iframes go for this to ensure cross browser compatibility: http://dynamicdrive.com/dynamicindex17/indexb.html making sure there are text links to every page on your site and that every page has a relevant title, including content between the tags <iframes> </iframes> |
| |
| | #7 (permalink) |
| Account Suspended Join Date: May 2005 Location: Whitewater, WI
Posts: 3,710
![]() ![]() ![]() ![]() ![]() ![]() ![]() | Another bad thing about IFrames is that you can't exactly get the horizontal scroll bar to dissapear in either ie or mozilla. There is always one way to get rid of it in each browser. The include is a good idea! |
| |
| | THREAD STARTER #8 (permalink) |
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Okay, so I renamed the file with .php (instead of .html). I placed the code below in a table on the page. Code: <?php include 'http://citruscountyre.listingsxpress.com'; ?> Here is the HTML version with iframes ????: NamePros.com http://www.namepros.com/web-design-discussion/175691-using-iframes.html Here is the PHP version with the include What am I doing wrong?
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- |
| |
| | #9 (permalink) |
| olrayts riserb Join Date: Apr 2004
Posts: 946
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | it seems that it is not pointing to the right link.. it has to point to the exact file.. where yours is redirecting to something..
__________________ http://www.travelmedical.info |
| |
| | THREAD STARTER #10 (permalink) | ||||
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
????: NamePros.com http://www.namepros.com/showthread.php?t=175691 http://citruscountyre.listingsxpress.com It's the same link on both versions. The iframes one works, but the php include, although it is the exact same link, doesn't work. Strange...
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- | ||||
| |
| | #11 (permalink) |
| olrayts riserb Join Date: Apr 2004
Posts: 946
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | try this <?php include 'http://citruscountyre.listingsxpress.com/listings/ListingsGrid.aspx'; ?> i see it might not work properly.. it might not show anything and if it does link within might not work properly.. the file i notice should be modified for it to work.. so i guess just leave the iframe
__________________ http://www.travelmedical.info
Last edited by 988; 03-11-2006 at 11:52 PM.
|
| |
| | #13 (permalink) |
![]() Join Date: Jul 2005 Location: Coffs H, Australia
Posts: 3,456
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | EDIT: NVM my post lol, sorry.
__________________ Free Forums / GoDaddy Coupon Codes (NEW DOMAIN!) / Free Arcade Script / <?='Your computer is '.(1?fine:broken).'.'?> |
| |
| | #14 (permalink) | ||||
| NamePros Regular Join Date: Apr 2005
Posts: 263
![]() ![]() |
Get displayed Iframes in mozilla without horizontal scrollabar is matter of bad ccs designing. Mozilla browser have a bug regarding width and height displaying incorrectly 100% size but that can be fixed by adding "min-width:auto; width:100%;" IE doesn not understand min-width or min-height so you can even specify 800px or whatever other measure to get rid of that scrollbar. Code: <?php include 'http://citruscountyre.listingsxpress.com/listings/ListingsGrid.aspx'; ?> I assume you are on Windows because the ASPX extension, in which case you need to use ASP OR SSI include instead of PHP include REANAMING THE file as ASP, ASPX or SHTML depending Code: <!-- #INCLUDE FILE="listings/ListingsGrid.aspx" --> ????: NamePros.com http://www.namepros.com/showthread.php?t=175691 Code: <?php include '/listings/ListingsGrid.aspx'; ?> | ||||
| |
| | THREAD STARTER #15 (permalink) |
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | THANK YOU ALL for your help. I really appreciate the time you took to work this out. I've added rep to everyone I could. Chronos, thanks for the insight on Windows server & php. The page I'm trying to pull up is in fact on a Windows server, but it's an external system I'm trying to integrate into my client's real estate website.
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- |
| |
| | #17 (permalink) |
| Guest
Posts: n/a
| If I wanted a hyperlink to open a page in an iFrame, but the hyperlink was outside of the iFrame...Could I? Is that possible? www.cherreysexhaust.com/media.htm is the page I'm working on. I want to be able to click those "customer cars, visitors cars, wallpaper, etc" and load each of their pages in the iFrame to the right of them (where it says "coming soon"). Anyone know of a tutorial that could help me? |
| | THREAD STARTER #19 (permalink) | ||||
| DomainersUniversity.com Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- | ||||
| |
| | #20 (permalink) |
| Account Suspended Join Date: May 2005 Location: Whitewater, WI
Posts: 3,710
![]() ![]() ![]() ![]() ![]() ![]() ![]() | It is because in your include statement I see it calling JS and having this page called: http://citruscountyre.com/listings/L...ame=ourhomes.x This is actually not a page and this is the one it is trying to load. You need to load this: http://citruscountyre.listingsxpress.com/ourhomes Look at the source on both pages. You will note it is loading two entirely different pages. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| iframes issue - help! | james3k | Web Design Discussion | 8 | 01-25-2006 02:57 PM |
| Iframes | combs84 | Web Design Discussion | 8 | 11-08-2005 03:20 PM |
| Includes? iFrames? | Brinnie | Programming | 1 | 08-08-2005 02:17 PM |
| Iframes and form elements in Flash | OJay | Graphic Design / Flash | 3 | 04-18-2005 05:43 AM |
| javascript link for multiple iframes | onlymu | Programming | 0 | 07-06-2004 02:04 PM |