Hi
I made a page that generate a document based on different data, and I am trying to optimize the rendering to avoid page breaks in the middle of pictures or paragraphs.
The document itself is mainly a large repeating group with nested repeating groups inside.
Here are my concerns
I tried to play a bit with CSS Tool plugin, adding the following CSS. The CSS is properly loaded on the elements, but it doesn’t change anything on the results. I would need CSS expertise based on Bubble generated HTML ![]()
I use new responsive engine. Any idea?
<style>
@media print {
.bubble-element.Text {
break-inside: avoid-page !important;
page-break-inside: avoid !important;
overflow: visible !important;
display: block !important;
}
img {
break-inside: avoid-page !important;
page-break-inside: avoid !important;
}
}
</style>



