Hey Guys, I'll apologize in advance for being a total rookie. I am trying to replace two areas of my site with images and I'm not sure what would be the best process without screwing everything up. My site, www.peachlamps.com, has two images/code filled with text (Why Buy From Us?/Get To Know Us) that I want to remove and replace with graphics of the exact same size to make it look cleaner. I know how to link/display images, but I'm not sure how get them to show up on the site in the right spot w/ the correct amount of spacing/padding. Any help would be greatly appreciated. Thanks in advance
1. look for the file where the code for these parts(why buy from us) are found. 2. try/experiment little by little, maybe swap the p tag with your image tag and see if it fits 3. if you are trying to replace the whole box including the heading you may need pro help. it does look better if you replace the text with an image
The images are 250x250 pixels. The first image is: <img src=http://www.peachlamps.com/v/vspfiles/templates/227/tpss_peachlamp/images/freeshipping.jpg> The second image is: <img src=http://www.peachlamps.com/v/vspfiles/templates/227/tpss_peachlamp/images/weaccept.jpg> If you want to change the images, all you need to do is modify the image names above in the html page and ensure that your new images are located in the images folder. Really simple to do, even for a rookie, as long as you have access to the images folder and can update the html page. For example, if you want to change the image to be: newimage.jpg, you would do this: <img src=http://www.peachlamps.com/v/vspfiles/templates/227/tpss_peachlamp/images/newimage.jpg> And you would add newimage.jpg into the images folder so that the page references it properly.