I am using Front Page and the template is the Charity Trust Template http://www.freewebsitetemplates.com/preview/charitytrust/ I can't seem to get the header_bg.jpg to work. I don't see it in the Html to change. Can someone please help me? The website if you need it is www.teammicah.com
viewing the style sheet, it has the header.jpg in a folder named images. You must create a folder named images and place the header image in the folder, it will then be found and displayed. be sure to keep the image name as header_bg.jpg or you will have to change the name of the image on the style sheet. Or you could simply place the header image with all other images and change the style sheet accordingly.
Image is on the server,style sheet and it is in the image file. It looks fine on Front Page but when I upload it to the server it isn't showing. I don't see anywhere on the Html where it says header_bg.jpg.
According to your style sheet the header image is in a folder named images. } BODY { BACKGROUND: url(images/header_bg.jpg) repeat-x; TEXT-ALIGN: center } if you make the following changes to your style sheet you should be fine: } BODY { BACKGROUND: url(header_bg.jpg) repeat-x; TEXT-ALIGN: center }
just for clarification, the header image is here http://www.teammicah.com/header_bg.jpg but your style sheet is looking for it in a folder > images/header_bg.jpg
In your FrontPage open up your CSS file that came with the template and make sure that you have the full url to your images in the CSS...for example where your header_bg.jpg is, make sure that it says images/header_bg.jpg...or if that still causes a problem as FrontPage does tend to assume too much actually put the full url in there such as http://www.yoursite.com/images/header_bg.jpg just be sure to set the images in your css properly... Now the problem seems to be that you have the images floating around, and not in an images folder...so if you do not want to move all of the pictures to a folder called 'images' then you could actually just go in and re-direct the pictures in your frontpage program to http://www.yoursite.com/header_bg.jpg but be sure to do that with EVERY picture in both the HTML and the CSS! Hope that helps. Thanks