Viewing 4 replies - 1 through 4 (of 4 total)
  • This can be done by adding some code inside header.php. Find the end of the header div, usually started with the ID of header: <div id="header">

    Insert code like this to define a new div with an anchor tag link enclosing an image URL:

    <div id="top-ribbon">
       <a href="http://yourdomain.com/yourlink/" title="Your Title"><img src="http://yourdomain.com/wp-content/uploads/ribbonimage.jpg" alt="Your alternate text" /></a>
    </div>

    Then, add CSS to style.css to position the image:

    div#top-ribbon {
        position: absolute;
        top: 0;
        right: 200px;
    }
    Thread Starter christian1000

    (@christian1000)

    GREAT!!! Thank you so much!!! It works fine!

    Greetings and all the best,
    Chris

    If your problem has been solved, please use the dropdown on the right to mark this topic ‘Resolved’ so that anyone else with this question can see that there is a solution.

    Thread Starter christian1000

    (@christian1000)

    Yepp, done. Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Additional Header Image, like a ribbon or something’ is closed to new replies.