Forum
Calc Builder Support
Calc Builder supportForums
No se permite escribir sin estar logado. Por favor, login
Re: remove i image 18.10.2011 22:01
Hello,
yes it is the path to information icon. The best option is to create an empty image 1x1px with same name and overwrite info.png at the path you have located. The icon has some code associated so it's better not to delete image tag to avoid errors.
Hope this helps
Moonsoft Team
www.moonsoft.es
yes it is the path to information icon. The best option is to create an empty image 1x1px with same name and overwrite info.png at the path you have located. The icon has some code associated so it's better not to delete image tag to avoid errors.
Hope this helps
Moonsoft Team
www.moonsoft.es
Re: remove i image 21.11.2011 09:50
Hello,
If you want to remove all popup info you should remove these lines in modules\mod_calcbuilder\tmpl\default.php :
/* For Joomla 1.7 - 1.6 */
$('stickyDescContent_int').setStyle('width', 200);
var swin;
$('cb_name_tooltip').addEvent('mouseover',function(){
swin=new StickyWin.PointyTip('',$('stickyDescContent').get('html'),{
relativeTo: $('cb_name_tooltip'),
point: 1,
widht: '150px'
});
});
$('cb_name_tooltip').addEvent('mouseout',function(){
swin.hide();
});
// For Joomla 1.5
$('stickyDescContent_int').setStyle('width', 200);
var swin;
$('cb_name_tooltip').addEvent('mouseover',function(){
swin=new StickyWin.PointyTip('',$('stickyDescContent').get('html'),{
relativeTo: $('cb_name_tooltip'),
point: 1,
widht: '150px'
});
});
$('cb_name_tooltip').addEvent('mouseout',function(){
swin.hide();
});
Regards,
Moonsoft Team
Moonsoft Team
www.moonsoft.es
If you want to remove all popup info you should remove these lines in modules\mod_calcbuilder\tmpl\default.php :
/* For Joomla 1.7 - 1.6 */
$('stickyDescContent_int').setStyle('width', 200);
var swin;
$('cb_name_tooltip').addEvent('mouseover',function(){
swin=new StickyWin.PointyTip('',$('stickyDescContent').get('html'),{
relativeTo: $('cb_name_tooltip'),
point: 1,
widht: '150px'
});
});
$('cb_name_tooltip').addEvent('mouseout',function(){
swin.hide();
});
// For Joomla 1.5
$('stickyDescContent_int').setStyle('width', 200);
var swin;
$('cb_name_tooltip').addEvent('mouseover',function(){
swin=new StickyWin.PointyTip('',$('stickyDescContent').get('html'),{
relativeTo: $('cb_name_tooltip'),
point: 1,
widht: '150px'
});
});
$('cb_name_tooltip').addEvent('mouseout',function(){
swin.hide();
});
Regards,
Moonsoft Team
Moonsoft Team
www.moonsoft.es