Yearly Access Membership 180+ Divi Products On Just $199.99 $179.99 / year Join Today !

Lifetime Access Membership 180+ Divi Products On Just $349.99 $314.99 Join Today !

Implement Using

Divi Testimonial Module

Lets Get Started

Flip Card Effect Implement Using DIVI Testimonial Module

Step 1 :- Click On Insert standard section and select the regular section then click on insert row and select  3 column layout.

Flip Card Effect Implement Using DIVI Testimonial Module

Step 2 :- Once you have entered the Visual Builder, you can click the gray plus button to add a new module to your page. New modules can only be added inside of Rows. If you are starting a new page, don’t forget to add a row to your page first. Locate the person module within the list of modules and click it to add it to your page. The module list is searchable, which means you can also type the word “Testimonial” and then click enter to automatically find and add the person module! Once the module has been added, you will be greeted with the module’s list of options.

Flip Card Effect Implement Using DIVI Testimonial Module

Step 3 :- First thing you need to start with person module and insert as details as per below image..

1. Add Author Name On textfield Example Like :- Williamson (This is the name of the Testimonial Person you are featuring. The name is displayed at the top of the module in larger text.)
2. Add Job Title On textfield Example Like :- Web Developer (Position is displayed below the name in smaller text. This is often used to denote the professional position of a person within a corporate team.)

3. Add Content Description about Author

Step 4 :- Upload Testimonial Person Image

Flip Card Effect Implement Using DIVI Testimonial Module
Flip Card Effect Implement Using DIVI Testimonial Module

Step 4 :- Now Click on advanced tab and add css class

Css Class : et_pb_testi_flip_1 front

Flip Card Effect Implement Using DIVI Testimonial Module

Step 5 :- Now Click on advanced tab and add css class

Css Class : et_pb_testi_flip_1 back

Flip Card Effect Implement Using DIVI Testimonial Module

Step 5 :- Click on Save & Exit.

Flip Card Effect Implement Using DIVI Testimonial Module

Step 6 :- Repeat Setp 2,3,4,5 again for other three number counter module or Duplicate the Module that holds the Number Counters Modules so that more than one number counters are displayed below. .Only you have to enter diffrent color css class in css class text field.

Step  7:- Add class :” hover panel”  to Column

Flip Card Effect Implement Using DIVI Testimonial Module

Step 8:- Now lets start to Set Testimonial Module Style :

If you are working with a child theme  you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> ePanel -> Custom CSS  (which is located at the bottom of the ePanel)

Copy Below css code and paste in Custom Css Or stylesheet.

  
/* =======================
    Root Color
=========================*/

:root {--color-1:  rgb(251, 192, 45);} 


/* =======================
    Testimonial Style
=========================*/

  
.et_pb_testi_flip_1:after,.et_pb_testi_flip_1:before{content:"";z-index:1;transition:all .3s ease 0s;position:absolute}
.et_pb_testi_flip_1{background-color:#103045!important;color:#fff;border-top:5px solid var(--color-1)}

.et_pb_testi_flip_1:before{border-top:0 solid var(--color-1);border-right:0 solid transparent;
border-right-width:0;left:0;top:0;border-radius:0;background:0 0;margin-left:0}

.et_pb_testi_flip_1:after{border-bottom:0 solid var(--color-1);border-left:0 solid transparent;
border-left-width:0;bottom:0;right:0;visibility:visible}

.et_pb_testi_flip_1 .et_pb_testimonial_description .et_pb_testimonial_description_inner{color:#fff;}

.et_pb_testi_flip_1 .et_pb_testimonial_portrait:before{font-weight:900;font-size:65px;color:var(--color-1);
position:absolute;top:-36px;left:83px;font-family:ETmodules!important;background:0 0;
content:"{";width:0;height:0;box-shadow:none}

.et_pb_testi_flip_1 .et_pb_testimonial_description .et_pb_testimonial_description_inner 
.et_pb_testimonial_author{font-size:18px;color:var(--color-1)}  

.et_pb_testi_flip_1.back:before{border-top-width:50px;border-right-width:50px}

.et_pb_testi_flip_1.back:after{border-bottom-width:50px;border-left-width:50px}

.et_pb_testi_flip_1.back .et_pb_testimonial_portrait{box-shadow:0 0 0 3px var(--color-1)}
  
.et_pb_testi_flip_1.back .et_pb_testimonial_portrait{display: none;}

.et_pb_testi_flip_1.back .et_pb_testimonial_description .et_pb_testimonial_description_inner 
.et_pb_testimonial_author{display:none;}
.et_pb_testi_flip_1.back .et_pb_testimonial_description .et_pb_testimonial_description_inner 
.et_pb_testimonial_meta{display:none;}

@media only screen and (min-width:768px) and (max-width:980px){.et_pb_testi_flip_1 
.et_pb_testimonial_portrait{float:none;margin-right:auto}
.et_pb_testi_flip_1 .et_pb_testimonial_description{margin-left:0!important}}
  

Step  9:- Now lets start to Panel Hover Css Style :

If you are working with a child theme  you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> ePanel -> Custom CSS  (which is located at the bottom of the ePanel)

Copy Below css code and paste in Custom Css Or stylesheet.


/* -- make sure to declare a default for every property that you want animated 
-- */ /* -- general styles, including Y axis rotation -- */


.panel {
 position: relative;
} 

.panel .front { /*position: absolute;*/
 top: 0;
 z-index: 900;
 text-align: center;
 -webkit-transform: rotateX(0deg) rotateY(0deg);
 -webkit-transform-style: preserve-3d;
 -webkit-backface-visibility: hidden;
 -moz-transform: rotateX(0deg) rotateY(0deg);
 -moz-transform-style: preserve-3d;
 -moz-backface-visibility: hidden; 
 -o-transition: all .4s ease-in-out;
 -ms-transition: all .4s ease-in-out;
 -moz-transition: all .4s ease-in-out;
 -webkit-transition: all .4s ease-in-out;
 transition: all .4s ease-in-out;
}
.panel.flip .front {
 z-index: 900;
 -webkit-transform: rotateY(180deg);
 -moz-transform: rotateY(180deg);
}
.panel .back {
 position: absolute;
 top: 0;
 z-index: 800;
 -webkit-transform: rotateY(-180deg);
 -webkit-transform-style: preserve-3d;
 -webkit-backface-visibility: hidden;
 -moz-transform: rotateY(-180deg);
 -moz-transform-style: preserve-3d;
 -moz-backface-visibility: hidden; 
 /* -- transition is the magic sauce for animation -- */
 
 -o-transition: all .4s ease-in-out;
 -ms-transition: all .4s ease-in-out;
 -moz-transition: all .4s ease-in-out;
 -webkit-transition: all .4s ease-in-out;
 transition: all .4s ease-in-out;
 left: 0;
 right:0;
 margin: 0 !important;

}
.panel.flip .back {
 z-index: 1000;
 -webkit-transform: rotateX(0deg) rotateY(0deg);
 -moz-transform: rotateX(0deg) rotateY(0deg);
}



Step 10:- Now lets start to dazzle things up a bit with some JS.

If you are working with a child theme you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> Integration ->Add code to <head> Section  (which is located at the bottom of the ePanel)

Copy Below css code and paste in Custom Css Or stylesheet.


jQuery(document).ready(function(){
     // set up hover panels
    // although this can be done without JavaScript, we've attached these events
    // because it causes the hover to be triggered when the element is tapped 
        on a touch device
        jQuery('.hover').hover(function(){
            jQuery(this).addClass('flip');
        },function(){
            jQuery(this).removeClass('flip');
        });

    });

How to Flip Effect Implement in Divi Testimonial Module :

Cart
Your cart is empty.

Looks like you haven't made a choice yet.