I'm not a programmer, but this to me seems like it would be fairly easy.
I want to have text superimposed top/left on the main image on my website. I have text there currently, but search engines can't see it because it is part of the picture.
So I want to set the picture as background and have text coded over it.
I found this code, which would probably work:
div#test {
background-image: url(/images/backgroundimage.JPG);
background-repeat: no-repeat;
height: 500px;
width: 380px;
}
<div id="test">Superimposed Text</div
I found the .css file where the first part goes. The question is, where does the second <div id= go? I see where the image is loaded from "view source" but I can't find any file that has that syntax in it. So it must be dynamic, how do I find that file and add the above code?
Thanks, any help would be appreciated