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.
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.
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.
Thanks a million! Appreciate if.
This topic has been closed to new replies.