That pull down is slick. In which browser do you have the overlapping happening?
I’m not seeing it on OSX Chrome. Ah, I see it now on Firefox. Why is that browser the pain these days? It used to not be.
Okay… I saw the FF problems the first time I pulled up the page, but not again on refreshing. That’s definitely weird.
I’ve tried many ways to get the FF problems to show up again without success.
Is position:relative
of the following needed?
/* --- Teestimonials --------------------------------------------------------------------------- */
.testimonial > .inner {
position:relative;
font-family: Georgia, Times, 'Times New Roman', serif;
font-style:italic;
}
.testimonial.type-bubble > .inner {
padding:22px 22px 1px;
position:relative;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
}
How about the display: block
of
.testimonial.type-bubble > .inner:before {
width:0;
display:block;
content:"";
position:absolute;
bottom:-16px;
left:30px;
border-width:8px;
border-style:solid outset outset solid;
border-right-color:transparent !important;
border-bottom-color:transparent !important;
}
I think that some testing of the CSS in main/styles needs to happen to figure out if the position: relative or display: none is causing the FF display issues.