0

I am trying to have four columns in jeet with a gutter of .5

col(1/4, gutter: .5, cycle: 1/4)

This causes the fourth column to break, giving me only 3. I tried it without a gutter and the same thing happens.

col(1/4, cycle: 1/4)
Stothertk
  • 107
  • 1
  • 1
  • 5

1 Answers1

0

The cycle value essentially needs to be the number of columns... i.e. at which element do you want the row to end...

So your example would become

col(1/4, gutter: .5, cycle: 4)

Hope this helps!

Dan
  • 21
  • 7