I'm in the middle of modifying the template and I've realized that the left and right shadows aren't appearing. Does anyone know how to fix this? Thanks.
http://idubbedthatshot.comhi you must change into template_css.css file:
----------------------------------------------------------------
td.left_shadow {
width: 40px;
background-image: url(../images/js_bg_l.png);
background-repeat: repeat-y;
background-position: right; /* change to left */
margin: 0px;
padding: 0px;
}
td.right_shadow {
width: 40px;
background-image: url(../images/js_bg_r.png);
background-repeat: repeat-y;
background-position: left; /* change to right */
margin: 0px;
padding: 0px;
}
#contentarea {
float: center;
width: 846px; /* change to 886px */
background: #ffffff;
}
----------------------------------------------------------------
bye