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');
<div class=" testimonials">
<?php $image = get_sub_field('image'); ?>
<div class="row">
<div class="col-lg-4 col-md-1 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div>
<div class="col-lg-8 col-md-1">
<div class="col-md-4 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div>
<div class="col-md-8">
<div class="testimonial-text"><?php the_sub_field('text'); ?></div>
</div>
</div>
......
......@@ -15567,10 +15567,15 @@ a.skip-link:focus {
.testimonials-carousel .swiper-slide .testimonials .testimonial-text {
padding: 30px 50px;
}
.testimonials-carousel .swiper-slide .testimonials .testimonial-image {
border-radius: 25px 0px 0px 0px;
}
@media only screen and (max-width: 768px) {
.testimonials-carousel .swiper-slide .testimonials .testimonial-image {
height: 300px;
border-radius: 25px 25px 0px 0px;
background-size: cover;
background-position: center;
}
}
.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');
<p>By the end of this workshop, participants will be able to:<p>
<div class="row">
<?php while( the_repeater_field('outcomes') ): ?>
<div class="col-out col-lg-3 col-md-1">
<div class="col-out col-lg-3">
<?php if(get_sub_field('content') != ""){ ?>
<div class="outcome">
<?php the_sub_field('content'); ?>
......@@ -75,8 +75,8 @@ $program_info = get_field('program_info');
<div id="<?php echo esc_attr($id); ?>" class=" testimonials">
<?php $image = get_sub_field('image'); ?>
<div class="row">
<div class="col-lg-4 col-md-1" style=background-image:url(<?php echo $image['url'];?>); ></div>
<div class="col-lg-8 col-md-1">
<div class="col-md-4 testimonial-image" style=background-image:url(<?php echo $image['url'];?>); ></div>
<div class="col-md-8">
<div class="testimonial-text"><p><?php the_sub_field('text'); ?></p></div>
</div>
</div>
......
......@@ -174,13 +174,17 @@
height: auto;
}
}
.testimonial-text {
padding: 30px 50px;
}
.testimonial-image{
border-radius: 25px 0px 0px 0px;
@media only screen and (max-width: 768px) {
height: 300px;
border-radius: 25px 25px 0px 0px;
background-size: cover;
background-position: center;
}
}
p {
......
......@@ -5,7 +5,7 @@
Author: Tenzing Communications
Author URI: https://tenzingbrand.com
Template: understrap
Version: 1.1.0034
Version: 1.1.0035
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......