Dear Colm,
Thanks a lot for using the Animate It! plugin.
The issue seems to be with the width % set. You see, the exact percentage for 6 column is 16.66% (100 / 6). However, it's set 15.33%.
I created sort of a work-around, just add the following css and make sure its below the ".span_1_of_6" rule:
.animated .col.span_1_of_6 {
padding: 14px;
width: 16.66%;
}
Also, add important to the "width" in media query, so it becomes:
/* GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
.col { margin: 1% 0 1% 0%; }
.span_1_of_6, .span_2_of_6, .span_3_of_6, .span_4_of_6, .span_5_of_6, .span_6_of_6 { width: 100% !important; }
}
Let me know if this works