Hi Rosston,
I like what you have done with the site
You'll need to hack the mini_moo_gallery.php file in the
module directory to get the thumbnails to break into two rows.
Just locate the thumbnail image that you want to create the new row at and put in a clearing div at the end of the case statement:
< div class="clear"> < / div >.
(You'll need to remove the spaces between the brackets above).
The css for that should already exist in the
template but if it doesnt just add:
.clear {clear:both} to the template_css.css file.
You will also have to play around with the margins between the two rows as well and can do this by adding a height attribute to the .clear div.
Then you will also need to use a margin-left attribute to create a faux centred effect since the thumbnails float:left and the margin: 0 auto wont have any effect.
So in the css file:
Add something like this:
.pearScrollContent {margin-left:50px}
this should get the thumbnails centred. However if it doesnt you may need to apply the margin-left to the #pearscrollcontent or pearbrowser divs.
Thanks Anthony.