Hi Richard,
The top of the page is hidden under your navbar because of the way your theme is set up. You’ve got a navbar that’s position: fixed, so the content is sliding under it. Try adding
#meetings, #meeting, #location { padding-top: 100px; }
#meetings button { margin: 0; }
to your CSS and see if that helps.
As for your other question, by default the plugin shows the current day of meetings. You can link to the ‘any day’ view by linking to http://www.sastl.net/meetings/?d=any in your navbar.
Thanks. That css mod fixed the display issue and the d=any link shows all the meetings. The issue now is that the filter menus don’t work. I click on “any day” for example and it doesn’t do anything and doesn’t give me any drop down options.
Thanks for your prompt reply!
Ah, ok, that’s actually covered in the FAQ. Please try adding the following to your functions.php. I think what’s happening is that the Bootstrap framework is being added twice, once by the plugin and once by the theme.
add_action('wp_enqueue_scripts', function(){
wp_dequeue_style('bootstrap_css');
wp_dequeue_script('bootstrap_js');
});
That worked. Thanks. And thanks for the quick 1.9.8 update.
I just updated to the latest version of the plugin and I have the same issue again with the top of the page being hidden under the nav-bar. I tried increasing the 100px to 200 and see no change. This is on browsers on a mac. On my iphone, it renders properly.
Hey Jon,
A while back, the CSS needed to override the plugin changed, to help prevent future theme incompatibilities. Try this CSS now:
#tsml { padding-top: 100px; }
#tsml button { margin: 0; }