Hy!
I need my small images to be shown vertical on the left and medium picture on the right.
I've managed to get it working through css
#image_viewer {
width: 500px;
border: 1px solid #cccccc;
margin:5px;
padding:5px;
}
#image_medium_container {
float : right;
width : 370px;
height: 380px;
text-align:center;
}
.image_small {
border: none;
text-align:center;
margin-left:3px;
margin-right:3px;
cursor: pointer;
display: block;
padding-top: 5px;
padding-bottom: 5px;
}
.image_medium {
cursor: url(../images/zoomin.cur);
}
#image_nav_container {
float: left;
width: 100px;
height: 380px;
padding-top:5px;
text-align:center;
but have a problem. I still have some empty spacing under the containers. I've narrowed it down to this: my config settings are medium_height=380px and small_height=75px nad I get image-viever height 465px. So, it calculates med_height+small_height+padding=total_height
How do I make it not calculate height but use a predefined value? I've tried adding height: 390px under #image_viever but nothing happened.
What can I do?
Here's a screenshot of the problem...
