Testimonial

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Aug 12, 2014 2:57 pm
Reply with quote
Report this post
Hi,

I've add the gkTestimonial to overide.css
Code: Select all
/* Testimonials */
.gkTestimonial:before {
   display: none;
}
.gkTestimonial {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   float: left;
   margin: 0;
   padding: 0 24px;
}
.gkTestimonial.col1 { width: 100%; }
.gkTestimonial.col2 { width: 50%; }
.gkTestimonial.col3 { width: 33.3%; }
.gkTestimonial.col4 { width: 25%; }
.gkTestimonial img {
   float: left;
   margin: 4px 32px 4px 0;
}

.gkTestimonial p {
   color: #888;
   line-height: 28px;
   margin: 0;
   font-style: normal;

}
.gkTestimonial p cite {
   color: #333;
   display: block;
   margin: 20px 0 0 0;
}

/* Testimonial - animation */
.gkTestimonial.animate {
   opacity: 0; filter: alpha(opacity=0);
   position: relative;
   -webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
   -ms-transition: all .4s ease-out;
   -o-transition: all .4s ease-out;
   transition: all .4s ease-out;
}

.gkTestimonial.animate.loaded {
   opacity: 1; filter: alpha(opacity=100);
}

.gkTestimonial.animate.col2,
.gkTestimonial.animate.col3,
.gkTestimonial.animate.col4 {
   left: -300px;
}

.gkTestimonial.animate.col2 + .gkTestimonial.animate.col2,
.gkTestimonial.animate.col3:nth-child(3),
.gkTestimonial.animate.col4:nth-child(4) {
   left: 300px;
}

.gkTestimonial.animate.col2.loaded,
.gkTestimonial.animate.col3.loaded,
.gkTestimonial.animate.col4.loaded {
   left: 0!important;
}


And I used the following code for my site (at the bottom)
Code: Select all
<div class="gkTeam" data-cols="1" data-pages="2">
<div>
<div class="active">
<blockquote data-scroll-reveal="enter left and move 50px over 0.6s after 0.3s" class="gkTestimonial col1">
   <img src="images/portfolio/esther-siewert_clique-pr.jpg" width="15%" border="0" alt="Esther Siewert" />
   <p><i>“Michael is een harde werker en bovendien enorm betrokken. Je kan hem bellen met je vraag of probleem, en hij lost het letterlijk meteen nog op. Betrouwbaar en hard werken is voor mij enorm belangrijk. Maar bovendien een goed resultaat wat bij mij en mijn bedrijf past.”</i> <cite>Esther Siewert - Clique PR</cite></p>
</blockquote>
</div>

<div>
<blockquote  data-scroll-reveal="enter right and move 50px over 0.6s after 0.3s" class="gkTestimonial col2">
   <img src="media/k2/galleries/330/ymar_producties-logo.png" width="15%" border="0" alt="Ymar Producties" />
   <p><i>“Professioneel, zakelijk, maar vooral ook een strak design. Dat waren onze wensen vooraf voor de nieuw te ontwikkelen website. Wensen die perfect zijn ingevuld door Funkiej Webdesign. Daarbij heeft Funkiej Webdesign gezorgd voor extra functionaliteiten, zoals een subpagina waarop Ymar Producties (stock) foto’s toont aan de bezoekers van de website. Bij de ontwikkeling van onze website heeft Funkiej Webdesign aangetoond snel, flexibel en deskundig te zijn. Geen vraag was te veel, iets dat erg prettig is bij een dynamisch proces zoals de ontwikkeling van een nieuwe website.”</i> <cite>Ymar Producies</cite></p>
</blockquote>

</div>
</div>
</div>


If I'm correct this would show a page with content and on the second page the other content, but when I browse to the second page, it's empty :cry:

If you look very closely you see the second content fly by when you browse to the next page.....
User avatar
Expert Boarder

teitbite
Wed Aug 13, 2014 12:32 pm
Reply with quote
Report this post
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.gkTeam > div > div {
    margin: 0 !important;
}
User avatar
Moderator

GK User
Wed Aug 13, 2014 1:02 pm
Reply with quote
Report this post
tnx m8!

appreciate the work u do for me :mrgreen:
User avatar
Expert Boarder

teitbite
Thu Aug 14, 2014 3:35 pm
Reply with quote
Report this post
Hi

No problem. That's what I'm here for :)
User avatar
Moderator

GK User
Thu Aug 21, 2014 3:37 pm
Reply with quote
Report this post
one more thing :)

is it possible to let this 'scroll' automaticly to the next page? (instead of clicking the arrows)

website
User avatar
Expert Boarder

teitbite
Fri Aug 22, 2014 7:40 pm
Reply with quote
Report this post
Hi

I bet it is possible, but this is a kind of customisation I would need to ask programmers for. I'm afraid they will tell me it's for developer subscribers only ;/ If You are one than just go ahead and send a ticket.
User avatar
Moderator

GK User
Sat Aug 23, 2014 1:16 pm
Reply with quote
Report this post
Hmm...well that's not going to happen then, since I'm not a developer subcriber. :(

Thanks anyway 8-)
User avatar
Expert Boarder

GK User
Tue Sep 16, 2014 10:55 am
Reply with quote
Report this post
I've noticed that it doesnt work on mobile potrait mode. It doesn't show the arrows to scroll, only when you change your phone to landscape mode.

link
User avatar
Expert Boarder

teitbite
Wed Sep 17, 2014 9:14 am
Reply with quote
Report this post
Hi

Please add this to mobile.css

Code: Select all
.gkTeamNext {
    right: 0;
}

.gkTeamPrev {
    left: 0;
}
User avatar
Moderator

GK User
Wed Sep 17, 2014 12:53 pm
Reply with quote
Report this post
Hi,

Still no effect after adding it. :(
User avatar
Expert Boarder

teitbite
Fri Sep 19, 2014 9:57 am
Reply with quote
Report this post
Hi

I cannot see the classes in file I've asked You add it to: http://funkiej.nl/templates/gk_john_s/css/mobile.css
Please check if it was done correctly.
User avatar
Moderator


cron