• Resolved cramac

    (@cramac)


    hi how can i drop the nav and header area to display a custom logo above all content on the theme. im guessing I have to place the logo in the background to make it work or can I create my own custom logo above all the nav content in a white area.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author James Koster

    (@jameskoster)

    Hi,

    If you want to remove the site title / gravatar as well as the navigation you can add the following:

    remove_action( 'highwind_header', 'highwind_site_title', 20 );

    To remove the navigation add;

    remove_action( 'highwind_header', 'highwind_main_navigation', 30 );

    Then hook your own logo function in. Something like:

    add_action( 'highwind_header', 'my_custom_logo' );
    function my_custom_logo() {
    ?>
    <img src="path/to/image.png" alt="" />
    <?php
    }

    Thanks

    Thread Starter cramac

    (@cramac)

    hi thanks but it was more how to add a new div and logo area above the main nav at the top of the page so I can insert my own custom logo into the theme above the main nav

    Thread Starter cramac

    (@cramac)

    at what point do i add the php and what php file?

    There is a file call theme-actions.php

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘logo on highwind theme not gravatar logo’ is closed to new replies.