Are you setting any height in your javascript?

Otherwise, although i don't see any float in your style sheet, it looks like
this is something that could be fixed by

Using the "clearfix" css trick:

http://www.positioniseverything.net/easyclearing.html


In your stylesheet:

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
 

In your html doc:

Add class="clearfix" to your container...


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: mercredi 31 janvier 2007 15:09
To: jQuery Discussion.
Subject: [jQuery] Data falling out of Container Div

Hey all,

I'm having some trouble with a getting a div to size correctly. In some
instances, the results that I'm getting back are being displayed outside of
the container div.

Steps to see the issue:

1) Go to http://dev.healthybuyersclub.com/reyship.cfm
2) Click on Go button and you should get 1 result back
3) Change state to Florida and zipcode to 33065
4) Click on Go button and you should get 3 results back but you'll see that
the results are outside of the main container div

The JS code can be found here:

http://dev.healthybuyersclub.com/scripts/sopreview.js

Styles can be found here:

http://dev.healthybuyersclub.com/css/style.css

I'm stuck on this and I'm hoping someone could help me out.

Thanks,

Rey...

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

-- 
Ce message Envoi est certifié sans virus connu.
Analyse effectuée par AVG.
Version: 7.5.441 / Base de données virus: 268.17.17/661 - Date: 30/01/2007
23:30
 


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to