• Hi

    Is it possible to have additional lines on the tagline.

    I want to have our slogan followed by a telephone number for Virginia and a telephone number for North Carolina. For example;

    If It Crawls Give US a Call!
    Virginia: 757-382-0102 or 757-729-1744
    North Carolina: 252-480-2889 or 252 453 3693

    Thanks

    Sarah

Viewing 2 replies - 16 through 17 (of 17 total)
  • Sorry you are having difficulties.

    Here is exactly what I did…

    In the tagline, I entered the following:

    Text Line 1<br />Text Line 2

    I modified parts/class-header-menu.php as follows:

    On line 82, I changed the following so the tag line html characters get translated correctly in a desktop browser.
    
    <h2 class="span7 inside site-description"><?php bloginfo( 'description' ); ?></h2>
    
    to
    
    <h2 class="span7 inside site-description"><?php echo wp_specialchars_decode(esc_attr(get_bloginfo( 'description' ))); ?></h2>

    I also modified parts/class-main-header.php.

    I changed line 181 so the tagline with html characters gets displayed properly when viewing the site on a mobile browser.
    
    <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
    
    to
    
    <h2 class="site-description"><?php echo wp_specialchars_decode(esc_attr(get_bloginfo( 'description' ))); ?></h2>

    Hope that helps.

    Mike

    d_miller705

    (@d_miller705)

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Add additional lines to the Tagline’ is closed to new replies.