This tutorial shows you how to display the site description ( tagline ) when a header image ( logo ) has been added. Generally, when you add a header image or logo, the site description & site title are hidden. In the Gallery Pro child theme by Bloom, its coded differently.
Here’s the result :
Coding #
There’s 2 steps relating to modification of the code inside the Gallery Pro theme folder :
Step 1 – Go to gallery-pro > inc > genesis-changes.php and remove or comment out the following line of PHP code on or around line 42 :
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
Step 2 – In the gallery pro themes style.css file, find the following CSS between lines 1198 – 1202,
.header-image .site-description,
.header-image .site-title a {
display: block;
text-indent: -9999px;
}
and replace it with this CSS :
.header-image .site-title a {
display: block;
text-indent: -9999px;
}
.site-title {
margin-bottom: 10px;
}
Clear caching if the changes aren’t showing.