• Resolved mbrhc

    (@mbrhc)


    Hello — Very new WP user …. Is it possible to add a small logo on the title page?? (in addition to the banner/header…

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author TT Themes

    (@tomastoman)

    @mbrhc: You can replace the Site Title by your custom logo through “Theme Options > Header Settings > Logo URL”. Just click on the button “Upload Image” and upload the logo or choose a previously uploaded image.

    Best regards,
    Tomas Toman

    Thread Starter mbrhc

    (@mbrhc)

    Thank you for the prompt response! I didn;t realize the options were there….so I can REPLACE the title … but cannot have both a title and logo, correct? Its one or the other??

    Many thanks,

    Theme Author TT Themes

    (@tomastoman)

    By default, it is not possible to display both the title and the logo. The easiest way how to achieve it is to include the title into your logo image in a graphic editor.

    But if you would like to display the title as a text above the logo image, please open the “header.php” template, search here for the following code:

    <?php if ( $seasun_options_db['seasun_logo_url'] == '' ) { ?>
            <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
    <?php } else { ?>
            <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($seasun_options_db['seasun_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
    <?php } ?>

    and modify it in this way (remove the PHP conditions):

    <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
    <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($seasun_options_db['seasun_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>

    Best regards,
    Tomas Toman

    Thread Starter mbrhc

    (@mbrhc)

    Tomas — Thank you so much…. your quick response and helpfulness is very much appreciated!! Will work on it this evening!

    have a great day ??

    Theme Author TT Themes

    (@tomastoman)

    I am glad that I could help you! ??

    Best regards,
    Tomas Toman

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘insert logo in header area’ is closed to new replies.