ThemeShaper Forums » Thematic

Insert linked logos on the Header

(3 posts)
  • Started 1 year ago by oscar
  • Latest reply from Danieliser
  • This topic is not resolved
  1. Hello,
    I have a background image in the header, as below:

    # Branding
    {
    background-image: url ("images / topo.jpg");
    padding: 44px 0 0 128px;
    }

    Look at www.desafio100km.com.br

    How do I put links in images of logos that are in the upper right corner of the image forming part of the design background?

    Posted 1 year ago #
  2. Danieliser
    Member

    Check Here. I wrote a quick snippet to do just what you need.

    Posted 1 year ago #
  3. Danieliser
    Member

    in your case something like this

    // Add Right Side Image // Add Right Side Image
    function thematic_right_side_image() {
     echo '<div id="right-side-area">';
     echo '  <a href="#" title="" ><span id="sponsor-image"></span></a>';
     echo '  <a href="#" title="" ><span id="sponsor-image-2"></span></a>';
     echo '  <a href="#" title="" ><span id="sponsor-image-3"></span></a>';
     echo '</div>';
    }
    add_action('thematic_header','thematic_right_side_image',7);

    I would also recomdend after looking at your site that you use the function in the link in the previous post to add your image.. it will appear over the top of your blog title and description but leave them there for google to see.

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.