Love this component - thanks for all the hard work! It's enabling our church to save a heap of time.
I've been working through the CSS to get the tables to render consistently - specifically sudieslist and seriesdetail. As it turns out, seriesdetail is without a header row, which is generated in studieslist this way:
<?php
$headerCall = JView::loadHelper('header');
$header = getHeader($this->items[0], $params, $this->admin_params, $this->template, $showheader = $params->get('use_headers_list'), $ismodule=0);
echo $header;
?>
Unfortunately, in my limited ability with PHP, it's not as simple as adding these lines to the same place in seriesdetail, which I've found here:
/components/com_biblestudy/views/seriesdetail/tmpl/default.php
I'd love for all of these views to have consistent rendering options - probably something you're already working on!
www.northlakecc.us/teaching (studieslist)
www.northlakecc.us/teaching/select-a-series/unshackled (seriesdetail)
Thanks!