diff --git a/api/js/etemplate/et2_widget_dynheight.ts b/api/js/etemplate/et2_widget_dynheight.ts index c5c3694db9..d445133dcb 100644 --- a/api/js/etemplate/et2_widget_dynheight.ts +++ b/api/js/etemplate/et2_widget_dynheight.ts @@ -162,7 +162,7 @@ export class et2_dynheight jQuery(_node).children().each(function() { const $this = jQuery(this); const top = $this.offset().top; - if (this != self.innerNode[0] && top >= _bottom) + if(this != self.innerNode[0] && top >= _bottom && ["fixed", "absolute"].indexOf(getComputedStyle(this).position) == -1) { self.bottomNodes.push($this); }