Putting site logo & site description on multiple lines
-
I am using my website name in my header and want to change the number of lines for the site logo and site description. Right now the site logo (which is text) reads on one line:
Eric Cowger Design
Instead, I’d like for each word to read on a separate line such as:
Eric
Cowger
DesignI would also like for each word in the site description to do the same thing. Below, is the code from my header.php file:
<?php echo themify_logo_image(‘site_logo’); ?>
<?php if ( $site_desc = get_bloginfo(‘description’) ) : ?><h2 id=”site-description”><?php echo $site_desc; ?></h2><?php endif; ?>
How can I modify this code to get the text to display the way I’ve described? Thanks very much!!
- The topic ‘Putting site logo & site description on multiple lines’ is closed to new replies.