Jane Doe
Member
Posted 2 weeks ago #
My blog is http://www.notsohumble.ca/. I am using an image for my blog title and as a result, the name of the blog doesn't show up in the browser tab. How do I fix this? I've been at it for hours and can't find any answers anywhere. Thanks for any help.
<!-- Blog Title -->
<div id="header_siteheader">
<a href="<?php echo get_settings('home'); ?>"><img src="<?php bloginfo('template_directory'); ?>/img/logo.png" alt="not so humble" ?></a>
</div>
jrav001
Member
Posted 2 weeks ago #
First choice would be to include your site name in the Wordpress config and let wordpress take care of filling in the title information.
The non-dynamic option is the edit header.php, inserting your preferred title within the <title> tags.
Jane Doe
Member
Posted 2 weeks ago #
Thank you for responding. I hate to ask but what code would I include in the Wordpress config and where in the code would I insert it? Sorry for asking but I'm just learning.
jrav001
Member
Posted 2 weeks ago #
In wp-admin, go to Settings - General and fill the title in the "Blog title" field.
If the title doesn't show on your browser tab, check your header.php and look for something similar to:
<title><?php bloginfo('name'); ?></title>
Jane Doe
Member
Posted 2 weeks ago #
Well, colour me red! Thank you so much. When I tried that before, it super-imposed on my image so I didn't even think of trying again after I edited the code in the header php. I really appreciate your patience. :)