I'm assuming that:
Code:
rel="shadowbox;height=500;width=700"
is some sort of instruction to the script and not meant as style for the link. If I've got that right, try:
Code:
<style type="text/css">
#infobox {
position: fixed;
left: 30px;
bottom: 0px;
}
#infobox, #infobox a {
width: 60px;
height: 35px;
}
#infobox a {
display: block;
background-image: url(infobox.png);
background-repeat: no-repeat;
}
#infobox img, #topcontrol img {
width: 50px!important;
vertical-align: bottom;
}
</style>
<div id="infobox">
<a href="info.html" rel="shadowbox;height=500;width=700"></a>
</div>
BTW, in your example code there is no #infobox img element.
Bookmarks