Advertisement
Advertisement
| 04.11.2008 at 02:52PM PDT, ID: 23316584 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: |
<html>
<head>
<title>Checkbox Overlay</title>
<style type="text/css">
.DivPad { clear: both; height: 1px; margin: 0 auto; padding: 0; }
.BrowseResultDisplay DIV.BrowseDisplayRecords
{ float: left; display: inline; position: relative; overflow: visible;
width: 106px; max-width: 106px; height: 100px; margin: 0px; padding: 5px 0px 20px 5px; text-align: center;
background-color: #FFFFCC; }
.BrowseResultDisplay div.box
{ height: 80px; width: 106px;
margin: 0; padding: 0; text-align: center;background: red; }
.BrowseResultDisplay div.imgbox
{ position: relative; top: 0; left: 0; display:inline; margin: 0 auto; padding: 0; text-align: center; height: 110px; background-color: green; overflow: visible; }
.BrowseResultDisplay div.imgbox input
{ position: absolute; top: 0; left: 0; margin: 5px; padding: 0; text-align: left;vertical-align: bottom; z-index: 500; }
.DVSearchCenter
{ clear: both; }
</style>
</head>
<body>
<div style="background: yellow;">
<div class="BrowseResultDisplay">
<!-- TEST -->
<div class="BrowseDisplayRecords">
<div class="box">
<div class="imgbox">
<a href="#" title="janvi">
<img src="http://web1.Testspot.us/surfprofilesimageserver1/Users/Small/2972_221627.jpg"
alt="janvi" title="janvi" />
</a>
<input type="checkbox" name="chkUserIds" />
</div>
<div class="DvSearchCenter">
<a href="#" title="janvi">janvi</a></div>
</div>
</div>
<!-- TEST -->
<div class="BrowseDisplayRecords">
<div class="box">
<div class="imgbox">
<a href="#" title="janvi">
<img src="http://web1.testspot.us/surfprofilesimageserver2/Users/Medium/2974_15111.jpg"
alt="boobah" title="janvi" />
</a>
<input type="checkbox" name="chkUserIds" />
</div>
<div class="DvSearchCenter">
<a href="#" title="janvi">boobah</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|