Results 1 to 5 of 5

Thread: Dynamic Ajax Content

  1. #1
    Join Date
    Jan 2009
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Talking Dynamic Ajax Content

    1) Script Title: Dynamic Ajax Content

    2) Script URL (on DD): http://dynamicdrive.com/dynamicindex17/ajaxcontent.htm

    3) Describe problem: my web site http://thehivecomplex.zxq.net/ really needs this script or something similar in order for my soul to rest in peace. On Firefox it runs great, but on IE it shows the content out of the box that is created. When you click the link fragrances and candles...

    I have been looking at it for months now trying to figure it out and I am running out of time to get this site going.

    Please help me

    ps- it may take a couple of times to load the site because of other issues and I am consistently changing the web pages and adding things to it.

  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

    Change (in your index_1.css file):

    Code:
    #contentarea {
    	height: 430px;
    	width: 100%;
    	
    	overflow: auto;
    }
    to:

    Code:
    #contentarea {
    	height: 430px;
    	width: auto;
    	overflow: auto;
    }
    or perhaps even to:

    Code:
    #contentarea {
    	height: 430px;
    	overflow: auto;
    }
    The default width of a division is 100% (actually - all the way across until it hits something), but specifying 100% in IE can often cause wrapping. It shouldn't, its a quirk of IE, hopefully to be corrected in version 8.
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2009
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    thanks for the reply John,

    I have changed the css and it does the same ignoring of content box. I try to thing out of the box, but I never thought my work would show it so much

    is there anything else someone could suggest? What else could be the problem John?

  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

    Sorry, worked fine in IE 7 developer toolbar. I just made a local copy of the page though, it didn't work there.

    I'd start over, remove all styles, looks bad but works fine, no huge gap. Add the styles back one at a time until you find the culprit.
    - John
    ________________________

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

  5. The Following User Says Thank You to jscheuer1 For This Useful Post:

    bombusidea (01-12-2009)

  6. #5
    Join Date
    Jan 2009
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Dear John, (lol)

    I figured it out...I changed the position to relative for the content box...

    thanks for the help

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
  •