I'm looking at jEvents for displaying events, but I can't seem to figure out how to override the template for mod_jevents_latest to get rid of the default table structure and replace it with a more responsive DIV structure. I followed the instructions to copy the template files and start with:
Later in that file, I replaced the <table... tags with divs and got the basic structure to change, but getting into the nitty gritty seems impossible. It's not laid out simply like most other templates I've worked with. Instead of html and php, it seems that everything is done within the class file, which makes it super confusing to replace simple HTML elements. Any suggestions?
class OverrideDefaultModLatestView extends DefaultModLatestView
Later in that file, I replaced the <table... tags with divs and got the basic structure to change, but getting into the nitty gritty seems impossible. It's not laid out simply like most other templates I've worked with. Instead of html and php, it seems that everything is done within the class file, which makes it super confusing to replace simple HTML elements. Any suggestions?