Hide gallery TITLE and DESCRIPTION using CSS

In this tutorial you will find two snippets of code that will allow you to hide the gallery title and gallery description:

Hide gallery title and description using CSS - SmugMug Galleries

Adding CSS code

Open your SmugMug website → click CUSTOMIZE DESIGN → on the right side select ENTIRE SITE and add a CSS content block to it. Add the CSS code below to the CSS content block.

CSS
/*Hide gallery title*/
.sm-gallery-cover-info .sm-gallery-cover-title {
    display: none;
}
    
/*Hide gallery description*/
.sm-gallery-cover-info .sm-gallery-cover-description {
    display: none;
}

Leave the first comment