• Hi

    I would very much like to replace the somewhat plain-looking title on my blog with a banner image comprised of a better font. I have taken care of the second part there but the former presents with difficulty. I have been cautiously sniffing around header.php and the stylesheet but as I am no CSS expert, I haven’t had any success.

    My blog URL is https://certifiedscribe.com.au and the theme I am using is The Journalist.

    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You can edit your theme header and put IMG tag. For example:

    <h1><img src=”URL of an image” border=”0″/></h1>

    Option 2 – edit your CSS:
    1. Open style.css and find

    #container h1 {
    font-size:30px;
    font-weight:normal;
    letter-spacing:-1px;
    width:600px;
    padding:32px 0 25px 0;
    }

    2. Edit

    #container h1 {
    width: 600px;
    height: 30px; // edit it
    padding: 32px 0 25px 0;
    background: url(“URL of an image”) no-repeat;
    text-indent: -9999px
    }

    You can do it easily. You must follow the steps below.:-

    1) Click Appearance tab in your WordPress admin panel.
    2) Click on editor link.
    3) Now, open header.php by which you can edit the header.php file.
    4) Now find the code shown below :
    <title><?php wp_title(”); ?><?php if(wp_title(”, false)) { echo ‘ |’; } ?> <?php bloginfo(‘name’); ?></title>
    and replace it with code like <div>< img src=”enter the url of the image which you want to add as your blog logo”/></div>

    Hope this helped you!

    Thread Starter theory90

    (@theory90)

    hmm thanks for your efforts but i couldn’t seem to get either to work. svil4ok where precisely would i place the code from option one into the header.php? that’s the only option i didn’t attempt.

    Yes, in /wp-content/themes/your-theme/header.php.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Replace a blog title with an image’ is closed to new replies.