• Resolved micadz

    (@micadz)


    I would like to replace the title on my site with a jpeg file. How do I go about doing that in the Grid Focus Theme? Also, I want to get rid of the little box in the right corner (the one with 5 in it). Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You see to have removed your site’s title. However, you could upload your new image to the themes images folder and then open style.css and look for:

    #masthead {
    padding:7px 0;
    }

    Replace this with:

    #masthead {
    padding:7px 0;
    background:url(images/your_image_filename.jpg) top left no-repeat;
    height: [the_height_of_your_new_image_in_pixels]px;
    }

    substituting ‘your_image_filename’ and ‘the_height_of_your_new_image_in_pixels’ appropriately.

    Thread Starter micadz

    (@micadz)

    Thanks a million! Appreciate if.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Grid Focus Theme – Changing Title’ is closed to new replies.