I did some fiddling with the css and got the bubbles to work. Here is what works for me for bubble1
[
]
div.bubble1 div {
background: url(../images/bub1-br.gif) no-repeat bottom right;
margin: 0;
width: 100%;
padding-right: 10px;
}
div.bubble1 div div {
background: url(../images/bub1-bl.gif) no-repeat bottom left;
}
div.bubble1 div div div {
background: url(../images/bub1-tr.gif) no-repeat top right;
padding-right: 10px; /*This padding value was added*/
}
div.bubble1 div div div div {
background: transparent url(../images/bub1-tl.gif) no-repeat top left;
padding-left: 10px; /*These padding values were added*/
padding-top: 15px;
padding-bottom: 24px;
}
div.bubble1 div div div div div {
margin: 0;
width: auto;
/*padding: 10px 15px 20px; This padding value was deleted*/
}
[
]