Give this a shot. Depending on your choice of meta title code, it will also remove the blank white space from the beginning of the page code title. So, instead of <title> Here’s my page title</title>, you’ll see <title>Here’s my page title</title>. See code below. Hope it helps.
trim(wp_title(”, false))
Maybe in your case, you could try this. I haven’t verified/tested, but should work ok. Either way, the important piece of code is above.
<title><?php bloginfo(‘name’); ?><?php trim(wp_title(”, false)); ?></title>