You would need to create your own template for your gallery by creating a file in (your theme dir)/nggallery/ and then use a shortcode such as [nggallery id=# template=’my_template.php’].
You can find templates in one of two places, in 1.9.13 it’s in nextgen-gallery/view/, and in 2.0 it’s in nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/view/
Is there an existing template floating around? I wouldn’t know where to start on making something that works in that facet.
An easy way to do that is something like this:
Set: Gallery Settings -> NextGEN Basic Thumbnails -> Number of columns to display = 1
Add CSS under Other Options -> Styles:
.ngg-gallery-thumbnail img {
float:left!important;
margin-right:50px!important;
}
.ngg-gallery-thumbnail span {
float:right!important;
text-align:left!important;
}
Manage Galleries -> Gallery -> Description-Field: (Example)
<table><tr><td>Name:</td><td>
last name, first name
</td></tr><tr><td>Bio:</td><td>
bla bla
bla bla
blabla
</td></tr></table>
I will try that and report back!
w.bear that works exactly like what I wanted! I really appreciate it!