Проблема с модулем Imagefield marker
После установки модуля. У меня почему-то все подсказки уходят в верхний левый угол. И последняя подсказка накладывается на предпоследнюю.
http://i47.fastpic.ru/big/2013/0630/c8/6869213a6fa92e361aa8a4bba6dcb7c8.jpg
Что мне делать? Код модуля
<?php
/**
* @file
* Create images with one or more annotations on them.
*/
/**
* Implements hook_permission().
*/
function imagemarker_permission() {
return array(
'add markers to images' => array(
'title' => t('add markers to images'),
),
);
}
/**
* Implements hook_field_formatter_info().
*/
function imagemarker_field_formatter_info() {
return array(
'image_imagemarker' => array(
'label' => t('Image with markers'),
'field types' => array('image'),
),
);
}