Repeating groups
Anything list related

Element
Padding
RG number of columns
RG column min wdth
# of columns on 1280 px
# of columns on 768px
# of columns on 320px
Set up max column # (CSS)
Last updated
Anything list related

Last updated
<style>
@media only screen and (max-width: 640px) {
#rg-col-2 {
grid-template-columns: repeat(1, minmax(280px, 1fr))!important;
}
#rg-col-3 {
grid-template-columns: repeat(1, minmax(280px, 1fr))!important;
}}
@media only screen and (min-width: 641px) and (max-width: 960px) {
#rg-col-3 {
grid-template-columns: repeat(2, minmax(280px, 1fr))!important;
}}
</style>