grassyknoll
Member
Posted 3 years ago #
Happy Mothers Day!
I am using the Modern Clix design template and I am having a hard time figuring out how to add a header image. Not sure if I should be in the header.php or the css style. The other thing is I am not 100% sure I am solid with the image url. I have been pouring over the Header help section to no avail...
Here is my link:http://66.147.242.174/~feedthee/
Thanks
bg
grassyknoll
Member
Posted 3 years ago #
shrubbery
Member
Posted 3 years ago #
In your header.php file there is a link to /images/header_textimage.jpg
Simply replace this image with the image of your choice in the theme's images folder.
blogbreaking
Member
Posted 3 years ago #
If you have to put an image into a theme and have the image in your theme images folder, it's best to use this
<img src="<?php bloginfo('template_url'); ?>/images/textimage.jpg" />
It'll be the same for any theme you build so you don't need to write a special src location to link images all the time.
Wee Beastie
Member
Posted 2 years ago #
@blogbreaking - Awesome tip. Thanks!