• bloodfamily

    (@bloodfamily)


    i’d like to change the default logo image in my header. i’ve uploaded the image to use in my themes folder but am having trouble figuring out how and where to place the file name.

    currently:

    h1#logo {
    float: left;
    margin: 25px;
    padding: 0;
    line-height: 40px;
    font-size: 30px;
    text-shadow: #e7e7e5 0 2px 0;
    font-weight:bold;
    }
    h1#logo a {
    color: #333;

    }
    h1#logo a:hover {
    text-shadow: #e7e7e5 0 1px 0;
    }
    h1#logo .small-logo {
    float: left;
    padding-right: 10px;
    }

    my site: https://tothemoonnback.net

    any thoughts are appreciated!

    hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • esmi

    (@esmi)

    The small moon image is actually hardcoded into your theme’s markup. Try looking in header.php.

    Thread Starter bloodfamily

    (@bloodfamily)

    ok, thanks…looks like something in here might have potential…

    <div id=”head-top”>
    <h1 id=”logo”><img src=”<?php echo bloginfo(‘template_directory’); ?>/img/logos/<?php echo get_option(‘organic_theme_logo’); ?>.gif” class=”small-logo” alt=”logo” width=”40″ height=”40″ />

    any suggestions on what/where to tweak?

    many thanks

    esmi

    (@esmi)

    get_option('organic_theme_logo') suggests that the actual image file name can be set via your theme’s custom options page. So if you uploaded your logo (eg. mylogo.gif) to the theme’s img/logos folder using FTP (or whatever file management application your host provides) you could then use the custom logo option to set the image filename to “mylogo”.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘add new logo image to header’ is closed to new replies.