Close

Results 1 to 14 of 14
  1. #1
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Attention CSS Expanding box problem IE 6

    Hi all,

    I've been creating a website for a while now and it was all going well...

    This was until I was informed that the site does not display correctly in IE6

    I'm using Dreamweaver CS3 and used the browser compatabillity checker and it does display a problem for IE6

    here is what it finds :

    "Any content that does not fit in a fixed-width or -height box causes the box to expand to fit the content rather than letting the content overflow."

    Affects: Internet Explorer 6.0
    Likelihood: Likely

    Now ive been to this link that it suggests http://www.adobe.com/cfusion/communi...NG_BOX_PROBLEM

    and I do not have any idea on what to do. the width of the box is already set so i dunno what the problem is.

    Any help would be much appreciated

    Regards

    (a very miffed with IE) hitman

  2. #2
    DF VIP Member hxbro's Avatar
    Join Date
    Nov 2000
    Location
    Behind a wall
    Posts
    2,731
    Thanks
    4
    Thanked:        18
    Karma Level
    476

    Default Re: CSS Expanding box problem IE 6

    can you post a url to the page, you might need to play with the overflow: css options
    Download my latest breaks and electro mixes or listen to Sellout Breaks FM

  3. #3
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    ok here is the link

    http://www.leesavionics.co.uk/newsite/products.html

    apparantly is the box on the left with all the links in side thats causing all the coffuffle lol

    any help would be extreamly appreciated

    thanks

  4. #4
    DF VIP Member Freddy's Avatar
    Join Date
    Mar 2006
    Location
    cuntsville
    Posts
    6,201
    Thanks
    3
    Thanked:        13
    Karma Level
    783

    Default Re: CSS Expanding box problem IE 6

    #leftside {
    clear:left;
    float:left;
    width:140px;
    margin:0 0 5px;
    padding:0;
    overflow:hidden;
    }

    Try that. Ain't got IE installed at mo so can't see problem.

  5. #5
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    thanks peeps,

    thats cleared part of the problem, this becoming quite annoying lol

    ok so now ive cleared that problem, its also found another

    "Three Pixel Text Jog"

    When anonymous line boxes (boxes that contain inline content) are adjacent to a float, a 3px gap appears between the line box and the edge of the float. This gap disappears when the content clears the float, causing the content to "jog" three pixels in the direction of the float. Note that the gap may be difficult to see when left-aligned text is adjacent to a right float, but it does exist -- and it can lead to "float drop" in tight layouts.

    Now regardless i'm not sure if this will effect the main problem, should have described what was happening really, ok the table in the middle of the screen in IE6 moves about a quarter of the page down for some reason, in Safari and IE7 its fine just IE6, now I thought it was something to do with just that page but ive been told it does the same thing with the contact page aswell, which i think is really really odd!

  6. #6
    DF VIP Member hxbro's Avatar
    Join Date
    Nov 2000
    Location
    Behind a wall
    Posts
    2,731
    Thanks
    4
    Thanked:        18
    Karma Level
    476

    Default Re: CSS Expanding box problem IE 6

    IE and it's extra padding bugs.

    Best thing I find is just define a IE stylesheet with the bits that break with a smaller width
    Download my latest breaks and electro mixes or listen to Sellout Breaks FM

  7. #7
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    errm do u know how to do that? or can u think of another way of fixing the problem?

  8. #8
    DF VIP Member hxbro's Avatar
    Join Date
    Nov 2000
    Location
    Behind a wall
    Posts
    2,731
    Thanks
    4
    Thanked:        18
    Karma Level
    476

    Default Re: CSS Expanding box problem IE 6

    Put this in your page, it'll only include the stylesheet if IE is the browser

    <!--[if IE]>
    <link rel="stylesheet" href="css/iestylesheet.css" type="text/css" media="screen" />
    <![endif]-->
    Download my latest breaks and electro mixes or listen to Sellout Breaks FM

  9. #9
    DF VIP Member hxbro's Avatar
    Join Date
    Nov 2000
    Location
    Behind a wall
    Posts
    2,731
    Thanks
    4
    Thanked:        18
    Karma Level
    476

    Default Re: CSS Expanding box problem IE 6

    More conditional statements that only apply to IE (you shouldn't need anything for other browsers)

    <!--[if IE]>
    According to the conditional comment this is Internet Explorer<br />
    <![endif]-->
    <!--[if IE 5]>
    According to the conditional comment this is Internet Explorer 5<br />
    <![endif]-->
    <!--[if IE 5.0]>
    According to the conditional comment this is Internet Explorer 5.0<br />
    <![endif]-->
    <!--[if IE 5.5]>
    According to the conditional comment this is Internet Explorer 5.5<br />
    <![endif]-->
    <!--[if IE 6]>
    According to the conditional comment this is Internet Explorer 6<br />
    <![endif]-->
    <!--[if IE 7]>
    According to the conditional comment this is Internet Explorer 7<br />
    <![endif]-->
    <!--[if gte IE 5]>
    According to the conditional comment this is Internet Explorer 5 and up<br />
    <![endif]-->
    <!--[if lt IE 6]>
    According to the conditional comment this is Internet Explorer lower than 6<br />
    <![endif]-->
    <!--[if lte IE 5.5]>
    According to the conditional comment this is Internet Explorer lower or equal to 5.5<br />
    <![endif]-->
    <!--[if gt IE 6]>
    According to the conditional comment this is Internet Explorer greater than 6<br />
    <![endif]-->
    Download my latest breaks and electro mixes or listen to Sellout Breaks FM

  10. #10
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    excellent!

    thanks man

    i shall try that out and see how it goes

  11. #11
    DF VIP Member Freddy's Avatar
    Join Date
    Mar 2006
    Location
    cuntsville
    Posts
    6,201
    Thanks
    3
    Thanked:        13
    Karma Level
    783

    Default Re: CSS Expanding box problem IE 6


  12. #12
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    hi all

    ok i tried all of what has been posted and the problem still remains...but....

    ive learned something

    the pages that have the problem with IE6 are the ones where the main content has a table!

    so im relativly sure that IE6 is having some problem with me using tables to layout some of the content i.e. the contact and products page

    any ideas?

  13. #13
    DF VIP Member hxbro's Avatar
    Join Date
    Nov 2000
    Location
    Behind a wall
    Posts
    2,731
    Thanks
    4
    Thanked:        18
    Karma Level
    476

    Default Re: CSS Expanding box problem IE 6

    don't use tables unless it's for tabular data ?
    Download my latest breaks and electro mixes or listen to Sellout Breaks FM

  14. #14
    DF VIP Member hitmandk1985's Avatar
    Join Date
    Jul 2002
    Location
    Slough, Berkshire
    Posts
    154
    Thanks
    4
    Thanked:        2
    Karma Level
    272

    Default Re: CSS Expanding box problem IE 6

    excellent

    thanks for all the help guys

Similar Threads

  1. Floppy problem
    By urbsy in forum PC Problems
    Replies: 8
    Last Post: 7th September 2002, 12:04 AM
  2. F12002 Problem
    By shawtek in forum Microsoft Consoles
    Replies: 9
    Last Post: 31st August 2002, 10:20 AM
  3. Problem with Compaq Armada E500 Laptop
    By Mr Olympia in forum PC Problems
    Replies: 2
    Last Post: 29th August 2002, 02:40 PM
  4. real audio recording problem
    By flypitcher in forum Music Factory
    Replies: 3
    Last Post: 28th August 2002, 11:25 PM

Social Networking 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
  •