Get rid of 1 or 2 pixel repeatinggroup scrollbars?

Keep running into this problem:

image

Simple repeating group with complex contents.

Nothing special or hacky. But I constantly run into the issue where scrollbars will appear to scroll 1 or pixels. They seem to come up more often when I have conditional show/hide collapsing stuff within the repeating group.

To solve it, I have to tediously … TEDIOUSLY … nudge the heights of all all elements until I figure out which one is triggering it.

debug mode isn’t helpful

Does anyone know why this happens so I can zero in how to fix it?

Again, the scrolling is 1 or 2 pixels.

Sure.

1st option

  1. Add an ID to your element.
  2. Apply css:
    #element_id: { overflow: hidden!important }
    – Use a plugin like B.A. Toolkit to inject your own custom CSS/Javascript.

Second option:

  1. Wrap your RG in a group.
  2. Fit height to content (wrapper).
  3. Make RG min width and height something small.

I tried the second option but I’m still getting a weird 2/3px scroll on my RG… :cry: