Home › Forums › Support › Lightweight Social Icons – Can't See Icons › Reply To: Lightweight Social Icons – Can't See Icons
Hi Tom,
i found the problem and the solution π
The problem is the tooltip class, in fact if i disable the tooltip in widget option i can see the icon.
So…
I make a little script to remove the tooltip classe and add my “mytooltip” class
<script>
$(document).ready(function() {
$(‘.tooltip’).removeClass(‘tooltip’).addClass(‘mytooltip’);
});
</script>
and than i edit the js library of tooltipster and at the adn of file a write this :
// Initialize
jQuery(document).ready(function($) {
$(‘.mytooltip’).tooltipster({
delay: 200,
theme: ‘tooltipster-default’,
touchDevices: false,
trigger: ‘hover’
});
});
to replace this :
// Initialize
jQuery(document).ready(function($) {
$(‘.tooltip’).tooltipster({
delay: 200,
theme: ‘tooltipster-default’,
touchDevices: false,
trigger: ‘hover’
});
});
and now working fine for me π
Thanks,
Alessio