hi Nick,
finally i resolve the problem changing the numbers of width and height from "pixels" in "auto" in function.php .
#####################################################################
# Define Thumbnail sizes
#####################################################################
$k_option['custom']['imgSize']['base'] = array('width'=>267, 'height'=>180); // backend preview size, if changed does not affect the frontend
$k_option['custom']['imgSize']['S'] = array('width'=>60, 'height'=>60); // small preview pics, eg for sidebar news
$k_option['custom']['imgSize']['M'] = array('width'=>180, 'height'=>auto); // small preview pic for posts
$k_option['custom']['imgSize']['L'] = array('width'=>auto, 'height'=>auto); // big preview pic for posts
$k_option['custom']['imgSize']['XL'] = array('width'=>884, 'height'=>390); // big images for fullsize pages
Thank you for the advises !!!