5e5f6fe5 by Jeff Balicki

aaa

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 1b89495c
...@@ -14660,6 +14660,10 @@ input[type=checkbox] { ...@@ -14660,6 +14660,10 @@ input[type=checkbox] {
14660 line-height: 34px !important; 14660 line-height: 34px !important;
14661 } 14661 }
14662 14662
14663 .rlg figure.aligncenter.size-full {
14664 min-height: 110px;
14665 }
14666
14663 .pre-header { 14667 .pre-header {
14664 background-color: #0484b8; 14668 background-color: #0484b8;
14665 color: #fff; 14669 color: #fff;
......
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.
...@@ -24,7 +24,9 @@ function the_bread() { ...@@ -24,7 +24,9 @@ function the_bread() {
24 $slug = esc_html( $crumb ); 24 $slug = esc_html( $crumb );
25 25
26 $url = esc_url( $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . '/' . substr( implode( '/', $flour ), 0, strpos( implode( '/', $flour ), $crumb ) ) . $crumb. '/' ); 26 $url = esc_url( $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . '/' . substr( implode( '/', $flour ), 0, strpos( implode( '/', $flour ), $crumb ) ) . $crumb. '/' );
27 27 if($crumb == 'courses'){
28 continue;
29 }
28 array_push( $crumbs, ( object ) 30 array_push( $crumbs, ( object )
29 [ 31 [
30 'slug' => $slug, 32 'slug' => $slug,
...@@ -42,13 +44,13 @@ function the_bread() { ...@@ -42,13 +44,13 @@ function the_bread() {
42 echo '<ul class="bread">'; 44 echo '<ul class="bread">';
43 45
44 $i = 0; 46 $i = 0;
45 if ( is_singular( 'sfwd-lessons' ) ) { 47 if ( is_singular( 'sfwd-courses' ) ) {
46 echo '<li class="crumb" itemprop="itemListElement"> 48 echo '<li class="crumb" itemprop="itemListElement">
47 <a class="item" itemprop="item" href="https://thecommonwell.ca/learning-2/"> 49 <a class="item" itemprop="item" href="'.site_url().'/learning-opportunities/">
48 <span itemprop="name">Learning Opportunities</span> 50 <span itemprop="name">Programs</span>
49 </a> 51 </a>
50 <meta itemprop="position" content="1"> 52 <meta itemprop="position" content="1">
51 </li>&gt;'; 53 </li> |';
52 } 54 }
53 foreach ( $crumbs as $crumb ) { 55 foreach ( $crumbs as $crumb ) {
54 $i++; 56 $i++;
......
...@@ -185,3 +185,10 @@ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s ...@@ -185,3 +185,10 @@ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s
185 .has-medium-font-size{ 185 .has-medium-font-size{
186 line-height: 34px !important; 186 line-height: 34px !important;
187 } 187 }
188
189
190 .rlg{
191 figure.aligncenter.size-full {
192 min-height: 110px;
193 }
194 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: Tenzing Communications 5 Author: Tenzing Communications
6 Author URI: https://tenzingbrand.com 6 Author URI: https://tenzingbrand.com
7 Template: understrap 7 Template: understrap
8 Version: 1.1.0010 8 Version: 1.1.0011
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
......