Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Iframe SSI resize IE Link Problem

  1. #1
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Iframe SSI resize IE Link Problem

    1) Script Title: Iframe SSI script II

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...iframessi2.htm

    3) Describe problem: I will start by saying i love this script alot! however everything is working fine on firefox browsing. This could be very simple but if i open the page usin IE the links are "unclikable" they appear but the cursor does not change to a hand...

    you can view this by visiting www.terrybarker.com if you click the disclaimer at the bottom, that works and is in a normal Iframe, please help! this is the final stange for completing my new website!

    Kind regards,
    Terry

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That has nothing to do with the script. If you navigate directly to - say:

    http://www.terrybarker.com/home.html

    in IE, the links still don't work.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    nicely spotted, they work until something else kicks in script wise...

    i wonder what...

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It seemed to me to be the style:

    Code:
    .r3_c2 {
    	width:802px;
    	height:409px;
    	color: #000000;	
    	background-color: #F1EEEE;
    	background-image: url(../images/interface_r3_c2.png);
    	background-repeat: repeat-x;
    }
    And, this appears to me to be a bug in IE, but it may just be being finicky - meaning there may be a workaround via redesigning the flow of the page. Or, it may have to do with the image itself needing to be reworked in an image program so as to have total transparency in the middle there.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    humm... lol, erm, well the image is transparent so i can duplicate the other one on the other side and flip it identically, i dont think it would work tho...

  6. #6
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That might be best, if you had it as two much smaller images, one going one way as just the background aligned left of the container and the other way as the background aligned right of the contained tables.

    Or, the transparency of pngs can vary, be absolutely sure that it has 100% transparency in the middle there. Oh, and 0 gamma as well. Or, use a .gif perhaps

    Failing any and all of that, this seemed to fix the links:

    Code:
    .r3_c2 {
    	width:802px;
    	height:409px;
    	color: #000000;	
    	background-color: #F1EEEE;
    	background-image: url(../images/interface_r3_c2.png);
    	background-repeat: repeat-x;
    }
    
    .r3_c2 table {
    z-index:100;
    position:relative;
    }
    But, that is just a kludge - shouldn't hurt other browsers though. The problem is that it doesn't get rid of the way that the text looks ragged in IE.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  7. #7
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    like omg, how did you do that? lol

    em, the other alternative was to chance r2_c2 to a jpeg? as this is not supposed to be transparent and another thing is to seperate the two css files which i have just seem to my knowledge are clashing...

    apart from the cool codeing which i will use, do you think the above would make a difference?

  8. #8
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    If it really is a background (looks like it is), a jpg might work out too, I didn't think of that. You would need to set the part that is transparent in the png to the color of the background:

    #F1EEEE

    which in an image program would be more like:

    rgb(241, 238, 238)

    and it might work out really well.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  9. #9
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    great, i will work on it and get back either way!

  10. #10
    Join Date
    May 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    so i took your code out, sorted both the css's out, converted it to jpg, and, it worked, so it looks like IE has a problem with png?

    but your help has been massive for such a simple problem beliebe me, it would of took a few days for me to relise, im ok at coding but id love to learn and do this as a full time job, its great to get your head stuck into something, get annoyed and plug away for hours on nothing! haha

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •