
Dec 13th, 2006, 16:02
|
|
Reputable Member
|
|
Join Date: May 2006
Location: Northampton, UK
Posts: 399
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: Resizing Pictures
sok i got it
- Code: Select all
ul#thumbs {
padding:0;
margin:0;
width:64px;
height:48px;
position:relative;
}
#thumbs li {
list-style-type:none;
width:64px;
height:48px;
float:left;
z-index:100;
}
#thumbs a {
position:relative;
width:64px;
height:48px;
display:block;
float:left;
z-index:100;
cursor:default;
}
#thumbs a img {
position:relative;
width:62px;
height:46px;
border:1px solid #FFFFFF;
z-index:100;
}
does the trick
|