WordPress Tagline wrapping

I finally figured out how to break my tagline on my WordPress header. To do so, from your site’s Dashboard, select “Appearance”, then “Editor”. In the column on the right, select “Header”. Within the code in the center display look for where the title and description are set. Once located, use the HTML center tags to align the block (see below).

<div id=”header” role=”banner”>
<center>
<div id=”headerimg”>
<h1><a href=”<?php echo get_option(‘home’); ?>/”><?php bloginfo(‘name’); ?></a></h1>
<div><?php bloginfo(‘description’); ?></div>
</div>
</center>
</div>

 

This entry was posted in Tech Support. Bookmark the permalink.

Leave a Reply