I need to alter the main image for a photographic site to 920px by 612px these are very specific requirements.
I have altered the following in the style CSS :
/*The heights of the following 3 classes controll the slider height*/
.slideshow{
height:612px; /*this changes the height of the main image slider*/
width:920px;
overflow: hidden;
position: relative;
}
.featured, .fadeout {
height:612px;
}
.feature_excerpt{
max-height:612px;
padding:20px;
bottom:0;
display:none;
font-size:13px;
line-height:1.8em;
position:absolute;
width:250px;
z-index:3;
}
and also altered the large image in functions.php to
$k_option['custom']['imgSize']['XL'] = array('width'=>920, 'height'=>612); // big images for fullsize pages and mainpage slider
Everything is OK, but when the transition to another image occurs, it seems to flick back to the old dimensions set. Then reset itself ? you can see this on http://www.psweb-test4.com. What have I missed?
Can you help me please.














