When I try to use border-image in my website to make our logo appear as the border, the image won't even show up on the page. It doesn't work in any browser that I try and the image is in the same folder. I know for sure that I'm modifying the correct div because when I add border-radius, the borders become rounded. I really have no idea what I am doing wrong, so I would appreciate any help. Here's the div in CSS:
#outer_container {
height: 1495px;
width: 925px;
margin-right: auto;
margin-left: auto;
background-repeat: repeat-x;
background-attachment: fixed;
background-color: #E7EAF5;
border-style: solid;
border-width: 38px 0px 0px;
-moz-border-image: url(logo.gif) 81 0 repeat stretch;
-webkit-border-image: url(logo.gif) 81 0 repeat stretch;
-o-border-image: url(logo.gif) 81 0 repeat stretch;
border-image: url(logo.gif) 81 0 fill repeat stretch;
}