I have seen several answers to this question, but none of them work. None contain accurate coding in helper-main-menu.php or in header.php. All I want is the tagline to appear next to the logo. Can you please tell me which file to edit, where to add the additional code, and what that additional code is? Line numbers would also be a help. Thanks.
Hey canalecatcher,
Find this code in includes > helper-main-menu.php:
/*
* display the main navigation menu
* modify the output in your wordpress admin backend at appearance->menus
*/
above it add this php code:
$output .= '<div class="the_tagline">My Tagline</div>';
just replace My Tagline with the tagline you want to use then add this css code in Quick CSS (located in Enfold > General Styling):
.the_tagline {
font-size: 12px;
line-height: 1;
position: absolute;
bottom: 6px;
}
Hope this helps :)
Best regards,
Nikko
thanks! I had to fool around with the css to get the display right, but it works.