Okay
  Public Ticket #147442
Wordpress Tagline Not Showing
Closed

Comments

  • Laura started the conversation

    Hi there, I saw a previous question on this topic that was related to the tagline not showing in the header and understand that because of the responsive scrolling, the best option for it to show up there is to include it with a graphic logo.

    HOWEVER, what I would like to know is if there is a way to make it show in the actual browser frame. A couple of things, this helps with tagging for SEO and also I would like to keep that front / center for visitors to my website. I am wondering if there is some code that can be inserted to make this happen? Thank you!

  •  997
    ThemeNectar replied

    Hey Laura!

    If you open the header.php, you can add bloginfo('description');

    into this:

    } else { echo get_bloginfo('name'); } ?> 

    so it will look like:

    } else { echo get_bloginfo('name'); bloginfo('description'); } ?> 

    You'll then need to ensure that your header resizie is off and use css to move it into the correct position/sizing :)

    Cheers