JEM version: 2.1.5
Joomla: 3.4.6 - ISIS Template
Be aware that any changes will be overwritten by an update.
When you visit the main view you will notice on the sidebar a summary of events/venues/categories. It's even possible to add add a quick summary of popular events as hits are being stored but am going offtopic there
This is what you see:
The thing here is that the code for displaying the sliders is
JHtml::_('sliders.start'.......
JHtml::_('sliders.panel'........
JHtml::_('sliders.end');
an that's the way it was done in Joomla 2.x, it's ofcourse fine to do so as the code works. But the thing here is that the needed classes have been removed from Joomla 3.x and doing so there isn't much styling left. So you can consider to do 2 things: add the classes or just incorporate the new way.
The Joomla 3 way is to incorporate bootstrap Accordion
JHtml::_('bootstrap.startAccordion',.......
JHtml::_('bootstrap.addSlide', .......
JHtml::_('bootstrap.endSlide');......
JHtml::_('bootstrap.endAccordion');
And doing so it can be looking like:
Did attach the edited page so you can take a look.
================================================
The view can be styled more (tables to div, change layout of date within the sliders etc..) but it's just an example.
================================================
And with some added css you can even include some arrows so it will be looking like