I see that you still haven't validated your page. This makes it difficult to be certain what should be done to change this. However, here is what would work for a valid page and probably will here as well. Where you have this and similar:
Code:
<div id="image_Area_2" style="position: absolute;left: 510px; top: 343px;border:2px solid #696969;width:76px;height:50px;display:none">
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages2,150, 105, 0, 1000, 9, "")
</script>
</div>
get rid of the blue part and change the red zero to a 2.
Now, in your style section, add:
Code:
#image_Area_2 img {
border:2px solid #696969;
}
Notes: This must be done for each division containing a slide show call. Your current style section looks like so:
Code:
<style type="text/css">
.menutitle{
cursor:pointer;
margin-bottom: 5px;
background-color:CCCCCC;
color:#000000;
width:140px;
padding:2px;
text-align:center;
font-weight:bold;
/*/*/border:1px solid #000000;/* */
}
.submenu{
margin-bottom: 0.5em;
}
</style>
Bookmarks