How can i add link to header image?

  • Author
    Posts
  • #55762

    Hello from japan.
    I’m currently using and customizing Verbosa.
    I like it very very much.

    I’d like to add link to header image and I’d like someone to tell me how.

    The reason I want do it is logo image quality is very low, but header image is fine.
    So if you know how to up the image quality of logo, I’d like to tell me that also.

    I know i need to customize HTML, and I’ve been researching how to do it, but it seems there is no information in Japanese.

    I’m waiting your help.
    Thanks, and sorry for my english.

    #55785
    Zed
    Cryout Creations mastermind

    There is no theme functionality for that, but the task should be doable even with some custom JavaScript:

    jQuery('img.header-image').click(function() {
        var URL = "#enter-url-here";
        window.open(URL); 
    });

    and CSS to make cursor into pointer over image:

    .header-image {
       cursor: pointer;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘How can i add link to header image?’ is closed to new replies.