edbd7201 by Jeff Balicki

sssss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 08657d5d
...@@ -15852,6 +15852,15 @@ p.intro { ...@@ -15852,6 +15852,15 @@ p.intro {
15852 height: auto; 15852 height: auto;
15853 } 15853 }
15854 15854
15855 #events_list_con {
15856 width: 100%;
15857 display: block;
15858 margin: 0px;
15859 padding: 0px;
15860 max-height: 321px;
15861 overflow-y: scroll;
15862 }
15863
15855 #events_list { 15864 #events_list {
15856 width: 100%; 15865 width: 100%;
15857 } 15866 }
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -13,10 +13,10 @@ add_shortcode( 'event_list_tz', 'event_list_tz' ); ...@@ -13,10 +13,10 @@ add_shortcode( 'event_list_tz', 'event_list_tz' );
13 13
14 function event_list_tz(){ 14 function event_list_tz(){
15 ob_start(); ?> 15 ob_start(); ?>
16 16 <div id="events_list_con">
17 <table id="events_list"> 17 <table id="events_list">
18 <tbody> 18 <tbody>
19 [events_list limit="10" ] 19 [events_list ]
20 20
21 <tr> 21 <tr>
22 <td class="date_col"> 22 <td class="date_col">
...@@ -34,6 +34,7 @@ function event_list_tz(){ ...@@ -34,6 +34,7 @@ function event_list_tz(){
34 [/events_list] 34 [/events_list]
35 </tbody> 35 </tbody>
36 </table> 36 </table>
37 </div>
37 <?php 38 <?php
38 $output = ob_get_clean(); 39 $output = ob_get_clean();
39 return do_shortcode($output); 40 return do_shortcode($output);
......
...@@ -109,6 +109,14 @@ color: #000; ...@@ -109,6 +109,14 @@ color: #000;
109 height: auto; 109 height: auto;
110 } 110 }
111 } 111 }
112 #events_list_con{
113 width: 100%;
114 display: block;
115 margin: 0px;
116 padding: 0px;
117 max-height: 321px;
118 overflow-y: scroll;
119 }
112 #events_list{ 120 #events_list{
113 width: 100%; 121 width: 100%;
114 tr{ 122 tr{
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: the Understrap Contributors 5 Author: the Understrap Contributors
6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors 6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors
7 Template: understrap 7 Template: understrap
8 Version: 1.2.0056 8 Version: 1.2.0057
9 License: GNU General Public License v2 or later 9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Text Domain: understrap-child 11 Text Domain: understrap-child
......