Tagged: enfold, logo, site title
Hi,
I would like to display the site title instead of the logo. I know how to remove the logo, but no site title appears. What can I do?
Regards,
Koen
Hey Koen!
Change line 101 in includes/helper-main-menu.php:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
To something like:
echo "<strong class='logo'>".get_bloginfo('title')."</strong>";
Regards,
Josue
Thanks, that works. How to include the site description as well? And how to increase the font size of the blog title?
Hi!
Please add following right below the code Josue posted
echo "<strong class='tagline'>".get_bloginfo('description')."</strong>";
and add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.entry-content-wrapper .post-title { font-size: 24px; }
Regards,
Yigit
Sorry, I didn’t mean the font size of the blog post title but of the site title, shown in the header.