Thanks a lot for the info. I tried the suggestion you made but still no dice.
One note I should make, in order for me to be able to call images or files consitently I had to put a (/) in the begining if it was being stored in a child folder. I am not sure if that is just a firefox thing or what.
So maybe the problem is not the calling of images then, could be something else. I have included the two vital pieces of code I use on this border. Its pretty easy to see what my thought process was. Hopefully you can find something wrong with it. :P
Code:
.roundtop {
background-image: url('photo_site/border_top.png');
width: 630px;
}
.pics {
background-image: url('photo_site/border_middle.png');
background-repeat: repeat-y;
width: 630px;
text-align: center;
}
.roundbottom {
background-image: url('photo_site/border_bottom.png');
width: 630px;
}
Code:
<div class="roundtop"></div>
<div id="s1" class="pics">
<img src="/photo_site/pictures/bee.png" alt="1a" height="400" width="600"/>
<img src="/photo_site/pictures/Bridge.jpg" alt="1b" height="400" width="600"/>
<img src="/photo_site/pictures/Cat.jpg" alt="1c" height="400" width="600"/>
<img src="/photo_site/pictures/desert.jpg" alt="1d" height="400" width="600"/>
<img src="/photo_site/pictures/France.jpg" alt="1e" height="400" width="600"/>
<img src="/photo_site/pictures/House.jpg" alt="1f" height="400" width="600"/>
</div>
<div class="roundbottom"></div>
Thanks a lot