When I add my title on my WordPress theme, it goes like this How can I fix that? Site Link: http://aullah.com/
Edit the CSS and width of this complete bar... i think this is only causing the issue. Hope it helps...
It's because your blog title is too long and it is pushing to 2 lines. Either make your blog title shorter or change the font size via the following css property: #logo h1 a
3 different solutions you can take here. 1) Use less words in your blog title to make it fit on one line 2) Open /wp-content/themes/excellence/style.css Find: #logo h1 a {color:#CCCCCC; font-size:34px; display:block;} Code (markup): Replace with: #logo h1 a {color:#CCCCCC; font-size:22px; display:block;} Code (markup): 3) Open: /wp-content/themes/excellence/header.php Find: <a href="<?php bloginfo('rss2_url'); ?>" class="rss"><img src="<?php bloginfo('template_directory'); ?>/images/rss.gif" border="0" alt="RSS" /></a> </div><!--header--> Code (markup): After, Add: <br /> Code (markup): Then use an image editor to remove the black areas from these two images: http://aullah.com/wp-content/themes/excellence/images/menu_left.jpg http://aullah.com/wp-content/themes/excellence/images/menu_right.jpg --- Option #2 is probably the easiest
Definitely a CSS edit will do the trick. Aside from that, I would make the title shorter and maybe implement All in One SEO so you can use the title from there for your site.