Home › Forums › Support › Tagline is not appearing This topic has 6 replies, 3 voices, and was last updated 7 months, 1 week ago by Fernando. Viewing 7 posts - 1 through 7 (of 7 total) Author Posts August 25, 2022 at 12:56 am #2323180 Kamal On my website the tag line is not showing up. I have already unchecked ‘Hide site tagline’ in the site identity customization. Please help. Thanks & Regards, Kamal August 25, 2022 at 1:01 am #2323185 Fernando Customer Support Hi Kamal, The site tagline is removed by default when this option is activated as there typically isn’t enough space for it. However, you can add it back in using this PHP snippet: add_filter( 'generate_site_title_output', function( $output ) { $tagline = '<div class="site-description">Your tagline here</div>'; return $output . $tagline; } ); Adding PHP reference: https://docs.generatepress.com/article/adding-php/#code-snippets August 25, 2022 at 2:18 am #2323246 Kamal hello Fernando, Thanks a lot. Got the site-tag after adding the snippet. Is there any risk involved with using code snippet plugin? Also, I also would like to show the site-description only on desktop when the browser width is greater than 600px. Thanks & Regards, Kamal August 25, 2022 at 2:37 am #2323265 Kamal I achieved using the following css. @media screen and (max-width: 720px) { div.site-description { display: none !important; } } Please let me know if any improvement is needed in this snippet. Thanks & Regards, Kamal August 25, 2022 at 4:00 am #2323331 DavidStaff Customer Support Hi there, that CSS is absolutely fine – no improvements required . Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ August 25, 2022 at 4:36 am #2323363 Kamal Hi David, Thanks for the feedback. Sure I am extremally happy with the customer support. I will submit my reviews to WordPress. Regards, Kamal August 25, 2022 at 5:03 pm #2324064 Fernando Customer Support You’re welcome Kamal! Author Posts Viewing 7 posts - 1 through 7 (of 7 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In