• Resolved s3taco

    (@s3taco)


    Hello,

    Can you please tell me how to get my site title and tagline to appear below my site logo on each page other than the homepage. One per line:
    [LOGO]
    title
    tagline

    On mobile screen sizes, to the right of the logo, also on each page other than homepage. But the layout like this:
    [LOGO top half] title
    [LOGO bottom half] tagline

    Any guidance would be appreciated!

    Thank you!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author satoristudio

    (@satoristudio)

    Hey @s3taco,

    thanks for choosing Bento!

    There’s no readily available setting for this in Bento at the moment, but you can achieve the desired layout by editing the header.php template file, namely lines 34-36, adding the calls for the necessary elements, wrapped in a conditional statement; something along the lines of:

    <?php 
    if ( !is_front_page() ) {
    bento_logo(); // The theme's custom logo function
    echo get_option('blogname'); // For Site Name
    echo get_option('blogdescription'); // For Tag line or description
    }
    ?>
    Thread Starter s3taco

    (@s3taco)

    Perfect! Thank you! This was exactly what I needed! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Site Logo and Title?’ is closed to new replies.