• Well, I’ve been looking around how to split the header into 3 static images linking to a different things – all in the same horizontal line, but can’t really figure it out. I know it should be pretty easy, but I just can’t get it sorted out.

    Here is the head in my header file:

    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
    <meta name=”viewport” content=”width=device-width”>
    <?php
    if ( ! function_exists( ‘_wp_render_title_tag’ ) ) :
    function icraft_render_title() { ?>
    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
    <?php
    }
    add_action( ‘wp_head’, ‘icraft_render_title’ );
    endif;
    ?>
    <link rel=”profile” href=”https://gmpg.org/xfn/11″&gt;
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
    <?php wp_head(); ?>
    </head>

    Any ideas? Should I bring you more of the code? Any help would be appreciated, thank you.

  • The topic ‘[Theme: i-craft] Splitting header into 3 and more images’ is closed to new replies.