Hi, on my homepage: http://vps298024.ovh.net/ptaw/ eventon slider doen't seem to take the right height and I cant succed in modifying it.
Can you help me, please?
Thanks,
Francesco
The issue is that the eventOn is also adding the class "gallery" in the slider and the gallery css is present in the theme also, so both of them (gallery of eventOn and wplms) are conflicting with each other.
So to remove the gallery class add the bellow code in your wp-admin->wplms->footer->google analytics:
<script>
jQuery(document).ready(function(){
jQuery('body').find('.evosl_slider.eventon_events_list').removeClass('gallery');
});
</script>
Done, but it doesn't seem to change anythyng.
Ok, a '/' was missing on the closing script tag. Added and something has changed.
But something is still missing. See http://demo.myeventon.com/event-slider/
Thanks.
And now multi event widget doen't open on my android device.
Try removing the previous code and add the bellow code:
<script>
jQuery(document).ready(function(){
jQuery('body.home').find('.evosl_slider.eventon_events_list').removeClass('gallery');
});
</script>
Done. The result seems same as before.
Applying the js actually worked, refer:
http://prntscr.com/clq4sd
Initially the image height was short and the text were overlapping with each other and now they aren't.
Please try clearing the cache and then check.
Let me know if I misunderstood your issue.