Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #3428
    kott6850
    Member

    I would like to know how to get my site title above the header image, and if possible, also have the Favicon or another photo next to the title as is shown in all of the theme images.

     

    Also, how do you edit the menu tabs to organize them in a custom order?

    #3437
    Sakin
    Keymaster

    @kott6850: First when you ask question please add in your site URL. I don’t understand exactly your first question. You can add the large logo by combining the images then it will look like you have two image. But there current theme don’t have option to add two image in the logo.

    For menu use custom menu. See this http://en.support.wordpress.com/menus/

    #3487
    kott6850
    Member

    Sorry, the site url is http://50.97.97.37/~kott6850/  and to clarify my first question, in the the simple catch pro theme image (the one that is shown in the sidebar under “new themes”) it shows the title of the website (Simple Catch Pro) next to the “Sc” symbol.  On my website, the title is beneath the header image.  Is this because the header image in the picture is a slider?

    I think I understand what you are saying in regards to the header image, and will attempt to created a new header image with my title.  Unless there is a way to get the site title and tagline above the header image.

    #3498
    Sakin
    Keymaster

    @kott6850: Simple Catch Pro theme don’t have option to add the site title and description above the header image. So, It’s better you create the header image with the title and description as Image and disable the header and site title through Logo Options in Theme Options.

    I see that you have already disable the sc symbol. Let me know if there is anything I can help you with.

    #4619
    table26
    Member

    Hi.  I had the same question about reordering the appearance of the header so that the site title and description sit above the header.  Sakin says this is not possible in the Catch-box pro theme.

    Could you confirm that there is no way to adjust the appearance order of the site title and header image?   The answer is that it can only be incorporated through an uploaded logo image?

    My site is in a sandbox now at http://036f339.netsolhost.com/HQ/ but will be going live soon.  I have created a child them to work with and I do need a proper logo.   But for now, I’d rather just reorder how the header appears and deal with the logo later.  Do I have any other options?

    Thanks,

    Ted

    #4634
    Sakin
    Keymaster

    @Ted: In Catch Box Pro theme, you can do the customization by adding the following code in your Child Theme functions.php file.

    <?php
    // Removing Catch Box Pr parent theme heder details
    remove_action( 'catchbox_headercontent', 'catchbox_headerdetails', 12 );

    /**
    * Header Details fro child theme
    *
    * @Hooked in catchbox_headercontent
    * @since Catch Box 1.2.1
    */
    add_action( 'catchbox_headercontent', 'catchbox_headerdetails_child', 14 );
    function catchbox_headerdetails_child() { ?>
    <div class="logo-wrap clearfix">
    <hgroup id="site-details">
    <h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
    </hgroup>
    <?php
    // Check to see if the header image has been removed
    $header_image = get_header_image();
    if ( ! empty( $header_image ) ) : ?>
    <div id="site-logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
    </a></div>
    <?php endif; // end check for removed header image ?>
    </div><!-- .logo-wrap -->
    <?php }

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Title Above Header/Favicon / Menu tabs’ is closed to new replies.