http://myharbourisland.com/property/index.php?page=properties
The only changes I've made to the code below are width and height, as well as adding
Code: Select all
.thumb a:link img{}
Code: Select all
/* Album and Picture Lists */
.thumb
{
padding:0;
width:auto;
margin:0 0.5em 0.5em 0;
text-decoration:none;
line-height:normal;
list-style-type:none;
text-align:center;
float:left;
}
.thumb a /*controls frame, not image*/
{
display:block;
width:150px;
height:120px;
padding:10px;
margin:0;
background-color:white;
border-top:1px solid #eee;
border-right:2px solid #ccc;
border-bottom:2px solid #ccc;
border-left:1px solid #eee;
text-decoration:none;
text-align:center;
}
.thumb a:link img{ }
.thumb a:visited img{background-color:#eee;}
.thumb a:hover img {background-color:#dae6e4;}
Code: Select all
<li class="thumb">
<A href="whatever"> <img /></a>
</li>
Teri