Moonsoft Software Solutions

Calc Builder Support

Calc Builder support
Public write access is disabled. Please login
Last post
preforum

preforum
89 posts
---
18.10.2011 22:00

remove i image

/modules/mod_calcbuilder/assets/img/info.png

I think this "i" image inside calcbuilder. How to remove it?

Thanks.




 
MSTeam

MSTeam
227 posts
---
18.10.2011 22:01
Re: remove i image
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

 
hariskar

hariskar
3 posts
---
20.11.2011 17:01
Re: remove i image
And how can we remove the pop up info?
Thank you!




 
MSTeam

MSTeam
227 posts
---
21.11.2011 09:50
Re: remove i image
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