Everyday
04-02-2010, 02:41 PM
I was just alerted to an issue with our kayako integration on our site. I'm not sure what has changed but if there are any people that know kayako and would mind lending a hand for a moment, I would appreciate it. I can't imagine it's anything complicated.
http://www.razorservers.com/desk
Any help is appreciated as our designer is currently unavailable.
the_pm
04-02-2010, 03:01 PM
It looks like a container that's wrapped around floated columns is not being self-closed. I didn't look too closely at the markup, but this has all those appearances.
If you have a container wrapped around a couple floated elements, try adding this to your CSS:
.container { overflow:hidden }
* html .container { height:1% ; overflow:visible }
Change .container to whatever class or ID you need.
That will allow your container to clear in all browsers, including IE6.
Everyday
04-02-2010, 03:28 PM
We added a "clear" in the footer and that solved it. Thanks for the help!
the_pm
04-02-2010, 03:40 PM
that's the general idea - self-closing containers are a good thing to have in your back pocket too :)