Re: How do I call images in my child theme?
or you could create a div then set a background-image, width and height with css..
called mydiv or whatever, there doesnt have to be anything inside it..
#mydiv {
display:block;
height: 100px;
width:100px; //whatever the dimensions of your image is
background-image: url(“../images/homepage_placeholder.jpg”);
}
the buddypress themes dont get the image if you dont use absolute paths for in your template
i dont know of another way to make it work with selector