If anybody wants to add rounded corners to the shadowbox here a solution:
in skin.js replace markup
'<div id="shadowbox_container">' +
'<div id="shadowbox_overlay"></div>' +
'<div id="shadowbox">' +
'<table width="100%" border="0" cellspacing="0" cellpadding="0">' +
'<tr>' +
'<td id="sb-tl"></td>' +
'<td id="sb-tc"></td>' +
'<td id="sb-tr"></td>' +
'</tr>' +
'<tr>' +
'<td id="sb-cl"></td>' +
'<td id="sb-cc">' +
'<div id="shadowbox_title">' +
'<div id="shadowbox_title_inner"></div>' +
'</div>' +
'<div id="shadowbox_body">' +
'<div id="shadowbox_body_inner"></div>' +
'<div id="shadowbox_loading">' +
'<div id="shadowbox_loading_indicator"></div>' +
'
{cancel}' +
'</div>' +
'</div>' +
'</td>' +
'<td id="sb-cr"></td>' +
'</tr>' +
'<tr>' +
'<td id="sb-bl"></td>' +
'<td id="sb-bc"></td>' +
'<td id="sb-br"></td>' +
'</tr>' +
'</table>' +
'<div id="shadowbox_info">' +
'<div id="shadowbox_info_inner">' +
'<div id="shadowbox_counter"></div>' +
'<div id="shadowbox_nav">' +
'
Close' +
'
' +
'
' +
'
' +
'
' +
'</div>' +
'<div class="shadowbox_clear"></div>' +
'</div>' +
'</div>' +
'</div>' +
'</div>',
and the skin.css add:
#sb-tl {
background: url(rnd_white.png) 0 0 no-repeat;
height: 20px;
width: 20px;
}
#sb-tc {
background: url(rnd_white.png) 0 -40px repeat-x;
height: 20px;
padding-top: 2px;
}
#sb-tr {
background: url(rnd_white.png) -20px 0 no-repeat;
height: 20px;
width: 20px;
}
#sb-cl {
background: url(rnd_white.png) 0 -80px repeat-y;
width: 20px;
}
#sb-cc {
background-color: #FFFFFF;
}
#sb-cr {
background: url(rnd_white.png) -20px -80px repeat-y;
width: 20px;
}
#sb-bl {
background: url(rnd_white.png) 0 -20px no-repeat;
height: 20px;
width: 20px;
}
#sb-bc {
background: url(rnd_white.png) 0 -60px repeat-x;
height: 20px;
}
#sb-br {
background: url(rnd_white.png) -20px -20px no-repeat;
height: 20px;
width: 20px;
}
attached the
rnd_white.png