• I am curious how/where to insert my logo(jpg) next to my title “meredith coe photo”
    I’m just getting into css so if this can be done through the custom css that’s awesome if not, I’m okay finding what I need to do through editor.
    http://meredithcoephoto.com/
    THANK YOU

Viewing 3 replies - 1 through 3 (of 3 total)
  • its good to check if your theme supports it by default. so go through your dashboard once more, esp settings tab.

    else, you will have to modify header.php file to insert logo. to do this:
    1. upload your logo to some place on your server – you can FTP the file; or upload using normal media uploader, but get the direct URL to image.
    2. open header.php file and search for this line:

    <h1 class="site-title" id="site-title"><a href="http://meredithcoephoto.com/" title="Meredith Coe Photo" rel="home">Meredith Coe Photo</a></h1>

    the href and title properties are usually fetched using WP functions so look for this framework instead.
    3. now add the image (uploaded earlier) within this code. Example:

    .....rel="home"><img src="place-image-URL-here" /> Meredith Coe Photo</a></h1>

    IMPORTANT: fork a child theme before doing this to be on the safer side.
    Also, remember that you are using a responsive theme. so this might messup things while viewing on mobile, and you will need to add additional CSS properties to fix it.
    but still, i strongly feel that your theme would have a support for this…

    Thread Starter meredithcoe

    (@meredithcoe)

    AWESOME! That totally worked THANK YOU…. but how do I get it to appear on all the other pages as well?? Any help is appreciated 🙂

    give absolute path to your image..
    instead of <img src="L1.jpg" />, give <img src="http://meredithcoephoto.com/L1.jpg" />.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Logo jpg into header’ is closed to new replies.