css,responsive-design,couch-cms
Just add a little bit of CSS to display as block each element in the table, and hide your thead: table, tr, td { display: block; } thead { display: none; } JSFIDDLE: http://jsfiddle.net/ghorg12110/k8pojm31/...
I think you should use 'k_template_name' instead of 'k_page_name'. The value to test would be 'users.php' (assuming that is the name of your template). <cms:if k_template_name='users.php' > <script src="<cms:show k_site_link />js/global/imagesloaded.min.js"></script> </cms:if> An easy way of knowing which variables to use at any location is to place <cms:dump /> or...
twitter-bootstrap,twitter-bootstrap-3,fullcalendar,couch-cms
This is the code responsible for what you're seeing, in custom.js $('#evansCal').click(function() { if ($(this).text() == 'OFF') { $('#eventCal').fullCalendar('addEventSource',evansGCal); $('#eventCal').fullCalendar('addEventSource',evansGKidsCal); $('#eventCal').fullCalendar('addEventSource',teenGCal); $(this).text('ON'); $(this).removeClass('btn-default'); $(this).addClass('btn-info'); } else { $('#eventCal').fullCalendar('removeEventSource',evansGCal.googleCalendarId);...