March 8th 2010
I created a website using a template and i wanted to add a background picture and the company send i can not is there anyway i can add it anyway. Keep in mind that i almost no control of the creative part of my page.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Posted in Programming & Design | 1 Comment »
March 10th, 2010 at 5:39 am
If it is your site and even if you are using one of the hosting site’s templates, you are allowed to customize it. For a background image, you need to remove the bg image link for the one they are using and insert your own link to the image you want as a bg. It will probably be listed on the CSS stle sheet:
body {
background: #ffffff url(image path here) no-repeat center scroll;
}
Probably looks something like that.
Ron