|
Hello all,
I will try and keep this short. Recently my place of business had a design group design a website for us. After doing so I was going to update the site and post it. I have a limited amount of knowledge of CSS which the site is mainly based after. What my question is, is they provided me with a template and when I create a new page and attempt to change this one “main image” I get an error that the code is protected by a “template or translator” so I took the original template and added an editable region to the area of concern and still I get the error message leading me to believe it is the CSS doc. The area that handles the main image is as follows
#mainImg {
background: url(../images/MainPhoto.jpg) top right no-repeat;
height:306px;
position: relative;
margin-top: -115px;
left: 0px;
top: 0px;
}
Is there a way to tell this style sheet accept any image other than “MainPhoto.jpg” so I quit getting this error message for instance
#mainImg {
background: url(../images/anyphoto) top right no-repeat;
height:306px;
position: relative;
margin-top: -115px;
left: 0px;
top: 0px;
}
And am I even on the right track?
Thanks in advance.
Task
|