This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.
When you upload a header image from the Header Image subpanel, Thesis automatically disables the display of the tagline. If you’d like to show the tagline below the header image instead, follow these steps:
- Under Design Options > Display Options > Header, check Show site tagline in header.
-
Place the following code in
custom.css
, and modify as desired to fit the look of your site:.custom #header #tagline { height: 30px; text-indent: 25px; font-weight: bold; color: #000000; padding: 10px 5px; } .custom #content_box { margin-top: 3.2em; }
-
To prevent Thesis from disabling the tagline in the future should you upload a new header image, place the following code in
custom_functions.php
:add_filter('thesis_header_auto_tagline', '__return_false');