• Hey Guys,

    I am trying to add a picture for my logo rather then the wordpress title.

    i have been searching for the last 24 hours trying different ways of changing the title to a image. And so far none have worked.

    i have tryed editing just the style sheet or just the header but niether seems to get it done.

    I am using Falcon theme.
    Website Address is http://www.16bits.co.uk

    If someone could have a little look and see if they have got some ideas that would be great.

    thanks
    Adam

Viewing 7 replies - 1 through 7 (of 7 total)
  • search for the div with class=”blogname”… it’s probably inside the header.php and change it’s content….

    Say if this help.. =)

    Thread Starter adam2marsh

    (@adam2marsh)

    So this is whats in my header,

    <div class="blogname">
    	<h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
    	<h2><?php bloginfo('description'); ?></h2>
    </div>

    I have tried changing a few bits in here but never got it to work.

    I also tried this link and couldnt get it to work.
    http://antbag.com/replace-your-blog-title-with-a-logo/

    thanks mate.

    delete this part of the code for the title:
    <h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>

    And this for description:
    <h2><?php bloginfo('description'); ?></h2>

    or both…

    and put the img tag of your logo… if it’s inside template images dir, use something like:
    <img src="<?php bloginfo('template_url'); ?>/images/your-logo.jpg />

    Thread Starter adam2marsh

    (@adam2marsh)

    When using that i get a broken link.
    No matter where i put the logo on my sever.

    Thanks for help

    Even doing direct linking?
    the address ISN’T http://www.16bits.co.uk/images

    it’s http://www.16bits.co.uk/wp-content/themes/themeName/images

    If you still get errors, leave the image at your page, even if it’s broken, so I can check it..

    I’ll wait fo your reply.

    Thread Starter adam2marsh

    (@adam2marsh)

    Yeah i have been using the full url for the link.

    Ok i have made the changes exactly as you have said by removing and adding the new code.

    And if you go the webpage you will see what i mean.

    Again thank for help 🙂

    in the code I can see:

    <div class="blogname">
      <h1>
        <a href="http://www.16bits.co.uk">
          <span></span>
          <span class="cufon cufon-canvas" style="width: 35px; height: 26px;">
            <canvas width="71" height="33" style="width: 71px; height: 33px; top: -6px; left: -4px;"></canvas>
              <span class="cufon-alt">16 </span>
          </span>
          <span class="cufon cufon-canvas" style="width: 45px; height: 26px;">
            <canvas width="75" height="33" style="width: 75px; height: 33px; top: -6px; left: -4px;"></canvas>
            <span class="cufon-alt">Bits</span>
          </span>
        </a>
      </h1>
    </div>

    Which means you’re using cufon to dinamically render h1 tags… Did you activated it? Look at your plugins for cufon related configuration page… Deactive it if you don’t use it… Or look at you js codes for the cufon function Cufon.replace('h1'), comment this line and test your site again

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Issues With Changing Title From Words to Picture’ is closed to new replies.