Is there a way to use smaller image sizes than this in the slider? If I try to make them larger they are simply out of proportion. I really need the slider to allow for 500/300 is that possible?
thanks
Is there a way to use smaller image sizes than this in the slider? If I try to make them larger they are simply out of proportion. I really need the slider to allow for 500/300 is that possible?
thanks
You need to change following three entries in style.css to resize your slider:
/*The heights of the following 3 classes controll the slider height*/
.slideshow{
height:440px; /*this changes the height of the main image slider*/
width:940px;
overflow: hidden;
position: relative;
}
.featured, .fadeout {
height:440px;
}
.feature_excerpt{
max-height:400px;
padding:20px 30px 20px;
bottom:0;
display:none;
font-size:13px;
line-height:1.8em;
position:absolute;
width:250px;
z-index:3;
}
and in functions.php change:
$k_option['custom']['imgSize']['XL'] = array('width'=>940, 'height'=>440); // big images for fullsize pages and mainpage slider
to
$k_option['custom']['imgSize']['XL'] = array('width'=>500, 'height'=>300); // big images for fullsize pages and mainpage slider
The Dude
Dude,
How do you change the size of the shadow behind the slider to reflect the new size of the slider based on the directions noted above? Thanks
Hey,
you need to modify shadow.jpg located under: display/images/skin1/shadow.jpg
You can try to resize it directly or you can use the included psd file to modify the shadow as you like (you need gimp or photoshop to edit a psd file).
You must log in to post.