Style a testimonial box
-
Hello there,
Thanks in advance for your help!
I am in a spot of bother.I have been charged to put our testimonial carousel in the bottom right blue box in the third section on this page.
The original website had PHP which outputted the carousel box, and I used a PHP snippet inserter to insert the snippet into this box.
The content comes out fine, but I can’t seem to find out why the styling is not working.
The div class should be tbmi-title and tbmi-author. I have added some additional CSS to the original CSS file (/home/swag/development.swagbookkeeping.com.au/wp-content/themes/blick/assets/sass/region/testi-box.scss), but I can’t seem to get it to output in the design like the testimonials in the green box below.
This is the PHP snippet:
<div class="large-6 medium-6 small-12 cell"> <div class="services-testimonials" data-equalizer-watch> <?php if( have_rows('testimonials',79) ): ?> <div class="owl-carousel"> <?php while ( have_rows('testimonials',79) ) : the_row(); $testicontent = get_sub_field('testi_content'); $testiauthor = get_sub_field('testi_author'); ?> <div class="item"> <div class="tbmi-title"><?php echo $testicontent; ?></div> <div class="tbmi-author">- <?php echo $testiauthor; ?></div> </div> <?php endwhile; ?> </div> <?php endif; ?> </div> </div>
I changed the top div to .services-testimonials
This is the CSS code I have added:
.services-testimonials { background-color: #00b1dc; padding: 20%; .tbmi-title { font-size: 24px !important; line-height: 32px; color: $white; font-weight: $sbold; font-style: italic; margin-bottom: 1rem; p { font-style: inherit; font-size: inherit; line-height: inherit; font-weight: inherit; margin-bottom: inherit; color: inherit; } } .tbmi-author { font-size: 20px; line-height: 28px; color: $white; } }
Could you please help? Let me know if you need any further information.
Thanks!
Sarah- This topic was modified 4 years, 5 months ago by . Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
The page I need help with: [log in to see the link]
- The topic ‘Style a testimonial box’ is closed to new replies.