Viewing 6 replies - 1 through 6 (of 6 total)
  • What you will have to do is go to the theme editor.

    Under the header.php, You should look for the a tag that has your website.

    <span>
    < a href=”http://www.q5n.com/&#8221; title=”Q5N” rel=”home”>Q5N < / a >
    </span>

    What you’ll need to do is replace the a tag with an image tag that has the image location as the source, let me know if you need more details. 🙂

    Thread Starter Volectorus

    (@volectorus)

    There is no tag in header.php that has my website information, It Pulls that info from other components of the site. If it helps you can download the theme and take a look at the header.php file

    <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>

    That’s the one that needs to be replace with an img. Or did you want to keep the title?

    Thread Starter Volectorus

    (@volectorus)

    i dont want to keep the title. but would like the logo to be clickable to get back to the home site. not too sure what all i need to replace to accomplish that

    Ohhh then what you need to do is:

    <a href="<?php echo home_url( '/' ); ?>"><img src="Location of your image"/></a>

    Thread Starter Volectorus

    (@volectorus)

    got my image up, thx alot! I am glad to know where to look now.

    just got to read a bit and figure out how to get it to fit properly

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Logo Issues with current theme..’ is closed to new replies.