edafb2dc by Jeff Balicki

ssss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 8de1bde6
...@@ -45,8 +45,8 @@ $carousel_style = get_field('carousel_style'); ...@@ -45,8 +45,8 @@ $carousel_style = get_field('carousel_style');
45 <div class=" testimonials"> 45 <div class=" testimonials">
46 <?php $image = get_sub_field('image'); ?> 46 <?php $image = get_sub_field('image'); ?>
47 <div class="row"> 47 <div class="row">
48 <div class="col-lg-4 col-md-1 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div> 48 <div class="col-md-4 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div>
49 <div class="col-lg-8 col-md-1"> 49 <div class="col-md-8">
50 <div class="testimonial-text"><?php the_sub_field('text'); ?></div> 50 <div class="testimonial-text"><?php the_sub_field('text'); ?></div>
51 </div> 51 </div>
52 </div> 52 </div>
......
...@@ -15567,10 +15567,15 @@ a.skip-link:focus { ...@@ -15567,10 +15567,15 @@ a.skip-link:focus {
15567 .testimonials-carousel .swiper-slide .testimonials .testimonial-text { 15567 .testimonials-carousel .swiper-slide .testimonials .testimonial-text {
15568 padding: 30px 50px; 15568 padding: 30px 50px;
15569 } 15569 }
15570 .testimonials-carousel .swiper-slide .testimonials .testimonial-image {
15571 border-radius: 25px 0px 0px 0px;
15572 }
15570 @media only screen and (max-width: 768px) { 15573 @media only screen and (max-width: 768px) {
15571 .testimonials-carousel .swiper-slide .testimonials .testimonial-image { 15574 .testimonials-carousel .swiper-slide .testimonials .testimonial-image {
15572 height: 300px; 15575 height: 300px;
15573 border-radius: 25px 25px 0px 0px; 15576 border-radius: 25px 25px 0px 0px;
15577 background-size: cover;
15578 background-position: center;
15574 } 15579 }
15575 } 15580 }
15576 .testimonials-carousel .swiper-slide .testimonials p { 15581 .testimonials-carousel .swiper-slide .testimonials p {
......
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.
...@@ -55,7 +55,7 @@ $program_info = get_field('program_info'); ...@@ -55,7 +55,7 @@ $program_info = get_field('program_info');
55 <p>By the end of this workshop, participants will be able to:<p> 55 <p>By the end of this workshop, participants will be able to:<p>
56 <div class="row"> 56 <div class="row">
57 <?php while( the_repeater_field('outcomes') ): ?> 57 <?php while( the_repeater_field('outcomes') ): ?>
58 <div class="col-out col-lg-3 col-md-1"> 58 <div class="col-out col-lg-3">
59 <?php if(get_sub_field('content') != ""){ ?> 59 <?php if(get_sub_field('content') != ""){ ?>
60 <div class="outcome"> 60 <div class="outcome">
61 <?php the_sub_field('content'); ?> 61 <?php the_sub_field('content'); ?>
...@@ -75,8 +75,8 @@ $program_info = get_field('program_info'); ...@@ -75,8 +75,8 @@ $program_info = get_field('program_info');
75 <div id="<?php echo esc_attr($id); ?>" class=" testimonials"> 75 <div id="<?php echo esc_attr($id); ?>" class=" testimonials">
76 <?php $image = get_sub_field('image'); ?> 76 <?php $image = get_sub_field('image'); ?>
77 <div class="row"> 77 <div class="row">
78 <div class="col-lg-4 col-md-1" style=background-image:url(<?php echo $image['url'];?>); ></div> 78 <div class="col-md-4 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div>
79 <div class="col-lg-8 col-md-1"> 79 <div class="col-md-8">
80 <div class="testimonial-text"><p><?php the_sub_field('text'); ?></p></div> 80 <div class="testimonial-text"><p><?php the_sub_field('text'); ?></p></div>
81 </div> 81 </div>
82 </div> 82 </div>
......
...@@ -174,13 +174,17 @@ ...@@ -174,13 +174,17 @@
174 height: auto; 174 height: auto;
175 } 175 }
176 } 176 }
177
177 .testimonial-text { 178 .testimonial-text {
178 padding: 30px 50px; 179 padding: 30px 50px;
179 } 180 }
180 .testimonial-image{ 181 .testimonial-image{
182 border-radius: 25px 0px 0px 0px;
181 @media only screen and (max-width: 768px) { 183 @media only screen and (max-width: 768px) {
182 height: 300px; 184 height: 300px;
183 border-radius: 25px 25px 0px 0px; 185 border-radius: 25px 25px 0px 0px;
186 background-size: cover;
187 background-position: center;
184 } 188 }
185 } 189 }
186 p { 190 p {
......
...@@ -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.0034 8 Version: 1.1.0035
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
......