I’m glad I could help, Ellen!
Beautiful site, btw! : )
Hey there,
I also just installed the plug-in and had the same problem with the third column appearing under the first, apparently “pushed” down due to width issues. I also noticed quite a few people asking about this, with no apparent solution, even in closed threads.
So here’s what I did, and it worked: I took the CSS of the plugin from the FAQ section, inserted it in my child-theme’s CSS and changed:
.one_third {
width: 32% !important;
margin-right: 2% !important;
}
.one_third.last_column {
width: 32% !important;
margin-right: 0px !important;
}
to this:
.one_third {
width: 32% !important;
margin-right: 1% !important;
}
.one_third.last_column {
width: 32% !important;
margin-right: 1% !important;
}
As you can see, I have a spare 1% of width I’m not using (they all add up to 99%), but I don’t consider it a problem. Also tried 319px + 1px widths (instead of %) and it worked as well, as long as the sum fits in the usual 960px.
With other column settings, just change the widths accordingly, it should work as well.