I am glad I helped you.
I didn’t really understand your point about the title tag, can you be more specific?
Cheers
Hello, I had the same problem once. I noticed that many people ask in here the same thing but none gets an answer.
Propably the only case where this happens is that your theme uses a static page as homepage. (actually you have chosen to do so, not your theme by itself). So all you have to do is go to your head.php file and paste this:
<?php if (is_page('your homepage slug')) { ?>
<title>Homepage title</title>
<meta name="description" content="homepage description" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<?php }
else {?>
<title><?php wp_title(''); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<?php } ?>
just after your meta charset.
Hope this helps you and other people too. If so mark it as resolved.
Cheers,
Tim