@ Tim
Yeah, seems there is some type of conflict with the theme which does not let Gridder proper calculate the width of the container it is within. You’re going to have to make some very minor changes and then it should work fine. Here’s what to do.
Log into you site with FTP and navigate to this folder:
../wp-content/plugins/connections-gridder/
Download and open the gridder.js
file.
On line 15 you should find this:
cnGridderWidth();
Change it to this:
//cnGridderWidth();
Now, on line 253 you should find this:
/$( _self._scrollTo() ).animate( { scrollTop: _me.position().top }, 0 );
Change it to this:
///$( _self._scrollTo() ).animate( { scrollTop: _me.position().top }, 0 );
Save an upload the file overwriting the original.
Now, delete the gridder.min.js
file. That way Connections will load the newly altered version of the main file.
Refresh your page, things should work better now. Hope that helps, let me know.