It hapends when You edit advanced modules with use of tinyMCE editor. tinyMCE cut out a lot of imporatant code, so it makes it display wrong.
To fix that, please go to "Global Configuration" and change Default Editor to "Editor - none". Then go and edit our team module, and paste this code:
- Code: Select all
<div class="gkTeam col4 animate_queue">
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" class="animate_queue_element">
<img src="images/demo/about/1.jpg" border="0" alt="Tim Berners" />
<figcaption>
<h3>Tim Berners</h3>
<small>CEO Executive Officer</small> </figcaption>
</figure>
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" data-gplus="https://plus.google.com/+gavickpro/posts" class="animate_queue_element">
<img src="images/demo/about/2.jpg" border="0" alt="Julia Morena" />
<figcaption>
<h3>Julia Morena</h3>
<small>Creative Director</small> </figcaption>
</figure>
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" data-gplus="https://plus.google.com/+gavickpro/posts" class="animate_queue_element">
<img src="images/demo/about/3.jpg" border="0" alt="Eddy Doe" />
<figcaption>
<h3>Eddy Doe</h3>
<small>Customer Support</small> </figcaption>
</figure>
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" class="animate_queue_element">
<img src="images/demo/about/4.jpg" border="0" alt="Robert Frost" />
<figcaption>
<h3>Robert Frost</h3>
<small>Web Designer</small> </figcaption>
</figure>
</div>
<p style="text-align: center;"><a class="border bigbutton" href="#">Learn More</a></p>
It should look exactly like that, where each "person" is created by repeating this fragment:
- Code: Select all
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" data-gplus="https://plus.google.com/+gavickpro/posts" class="animate_queue_element">
<img src="images/demo/about/2.jpg" border="0" alt="Julia Morena" />
<figcaption>
<h3>Julia Morena</h3>
<small>Creative Director</small> </figcaption>
</figure>