• Resolved markovacs

    (@markovacs)


    Hi everybody,

    I have a header that is right now one big picture.
    Now I have figured that I want to make this clickable.
    I can’t seem to do it, I read many articles but because I am not using a standard template I cannot follow those general instructions.

    2nd question is that right now the text in the header is part of the picture, but I want that to be a link to my home page and the right hand side of the header should be a link to a different page.
    Do I have to make two diferent pictures in my header? How is that possible?

    Thank you,

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter markovacs

    (@markovacs)

    Thread Starter markovacs

    (@markovacs)

    anyone can help?
    would appreciate it

    Thread Starter markovacs

    (@markovacs)

    I want something like this if that helps: http://www.kismamablog.hu/

    So that the title is clickable (linked to the home page) and there is a picture on the right which is linked to a different page within my site.

    Please help, I am really stuck on this one for a long time now.

    Thanks

    try to create two transparent link areas floating above the header:
    change part of header.php:
    from this:

    <div class="Sheet-body">
    <div class="Header">
      <div class="Header-png"></div>

    to this:

    <div class="Sheet-body">
    <div class="Header"><a href="linkurlleftside#"  class="left_header"></a><a href="linkurlrightside##" class="right_header"></a>
        <div class="Header-png"></div>

    and add this to the style.css:

    .Header a.left_header {
    display:block;
    width:500px;
    height:123px;
    float:left;
    }
    .Header a.right_header {
    display:block;
    width:460px;
    height:123px;
    float:right;
    }

    not tested – seems to work in firefox3.5, IE7 😉

    Thread Starter markovacs

    (@markovacs)

    Dear alchymyth!

    thank you SOOOOOOOOOO much it is working!!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘clickable header two pictures?’ is closed to new replies.