Tom Stajmiger
asked 7 years ago

hello all, i am hoping to add a html text tagline under the logo at the top left of this page http://focusthelight.com/ – any ideas? i see in past iterations of this template that it was available in the theme settings, but i can’t find it now. please help. thank you!

1 Answers
DominicStaff
answered 7 years ago

1/ The tagline can be added/edited in Settings > General section of your WordPress Dashboard:
2/ In case it is not displayed on your website by default, please navigate to Appearance > Editor.
3/ Open the header.php file and add the following code under line 30:

<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>

See the screenshot: http://prntscr.com/gql510

4/ Save changes to file when you are done.
5/ Check the result on your website. 

Tom Stajmiger
replied 7 years ago

thank you so much, that helps, though the spacing is too much on desktop/laptop monitor and also disappears on mobile device. is there a way to help with that? thank you so much

Tom Stajmiger
replied 7 years ago

please describe how to make tagline show on mobile device?

Dominic Staff
replied 7 years ago

Please accept my apology for the delay in getting back to you.
You can add the following code to the style.css file or the Custom code in the Theme Settings.

@media (max-width: 767px) {
.site-navigation .site-brand img {
display: none;
}

.site-navigation .navbar-toggle {
border-right: 1px solid #ddd;
}

.site-navigation .search-toggle {
border-left: 1px solid #ddd;
}

.site-header .row {
display: block !important;
}

.site-header #header-widgets {
display: none;
}

.site-header .site-description {
margin-top: 6px;
}
}

Tom Stajmiger
replied 7 years ago

that’s a very beautiful thing! thank you. and much worth the wait. no worries. have a great day!!

Dominic Staff
replied 7 years ago

If you have any issue or questions, please let me know, we will check and help you resolve it.

Powered by DW Question & Answer Pro