Hello,
The problem with your site template is that it gives global styling declarations, and don't take care of other extensions...
What is the name of this template ?
So, the problem is that your site template applies by default, to all the body, a box-sizing: border-box css declaration.
So, unfortunately, it is applied to all div tags.
In the global options of iCagenda, in the "General Settings" tab, you will find the Custom CSS option.
Activate it, and enter this :
#ictip span.img {
box-sizing: content-box;
}
Note that i will add this in the next release 3.4.2 to prevent this issue in the future.
You have still another issue with the calendar.
And you have proposed to solve this issue with a "strange" css override :
www.joomlic.com/fr/forum/icagenda-help-e...odule-column-spacing.
So, you can add this too (not tested by me) :
.default.iccalendar table td,
.ic_rounded.iccalendar table td {
width: 0%
}
Hope this helps!
Cyril