• I would like to have the site tagline populate below the site title on my client site but I can’t seem to nail the code change needed.

    Can someone point me in the right direction and help me with the exact code I need? I’m not sure if I need to adjust the functions.php file and/or add some css.

    I’d la la loooove some help on this!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @drebeltrami,

    It is hard to know where to start since you provided quite little context ??

    I assume that you are developing a custom theme or child theme. Is that correct?
    If that is the case, in the template that you want the tagline to show on you can use the following code to print the tagline

    <?php echo get_bloginfo( 'description' ); ?>

    Is that what you were asking for?
    Let me know if you need further help ??
    Cheers

    Thread Starter Drebeltrami

    (@drebeltrami)

    Thanks sjaure!

    Here’s some more context (sorry about that!)…

    I’m building the site using Genesis + the Infinity Pro child theme. Right now I’ve got my clients site name dialed in but we’d like to be able to include his site tagline below that in the header.

    Would the code you provided make this happen? If so, would I simply add it to the end of the functions.php file?

    You are welcome,

    I understand that Infinity Pro is a paid theme, and as such it is not supported in this forum.
    You should reach they support since you are paying for it.

    Nevertheless, I’ll give you a clue for free ??
    Try adding this custom CSS:

    
    .site-header .site-description {
        text-indent: 0px;
    }
    

    You will need to figure out the rest of the styling with Infinity Pro support.

    Take care!

    You’re not going to add @sjaure code to your functions. If your paid theme comes with something like visual composer or something like that use a heading element. If you want to use his code put it in your child theme header. Do not put it in the parent or it will erase.

    I find it hard to believe a paid themes that didn’t come with a site tag line.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Displaying Site Tagline’ is closed to new replies.