I want to design an Album Set layout that does not show the title (or the space for the title) underneath the album set image (because the title will be part of the image). I was expecting that option to be in the “thumbnail grid” section of the Album settings with the Design module of Album sets, but I can’t figure that out. Thanks.
You’ll need to use custom css
This will do it:
figure figcaption {
display:none;
}
But if you don’t want the title on every album to disappear, you can tie this css to the specific album set template by using the template-ID body selector. Then use that template only on albums where you don’t want a title.
More on doing that here:
1 Like