Homepage"Our Team" HTML

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
Thu Jan 31, 2013 9:32 pm
Reply with quote
Report this post
I was messing around with the "Our Team" module that's on the homepage demo and somehow messed up the HTML in the custom output area. Can someone copy it and paste it here?

Here's what I currently have that's not rendering right:

Code: Select all
<div class="gkTeam" data-count="7"><a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Pastor Ben</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Rich</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Alissa</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Melanie</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Angela</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Jimmy</a> <a href="#"><img src="images/demo/demo_team.jpg" alt="" /></a> <a href="#">Remzi</a></div>


Thanks,

Joe
User avatar
Expert Boarder

Konrad M
Fri Feb 01, 2013 6:42 am
Reply with quote
Report this post
Hi,
probably you have edit this content using some editor. Please if you are editing this part turn off editor in global settings before. Becasue editor don't recognize HTML 5 tags and mess it up after changes. Here is correct code for this module:
Code: Select all
<div class="gkTeam" data-count="7">
<figure data-animation="horizontal" data-delay="0">
<a href="#"><img src="images/demo/team1.png" alt="" /></a>
<figcaption><a href="#">Mark</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="100">
<a href="#"><img src="images/demo/team2.png" alt="" /></a>
<figcaption><a href="#">Mikkel</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="200">
<a href="#"><img src="images/demo/team3.png" alt="" /></a>
<figcaption><a href="#">Donna</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="300">
<a href="#"><img src="images/demo/team4.png" alt="" /></a>
<figcaption><a href="#">Noemi</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="400">
<a href="#"><img src="images/demo/team5.png" alt="" /></a>
<figcaption><a href="#">Robert</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="500">
<a href="#"><img src="images/demo/team6.png" alt="" /></a>
<figcaption><a href="#">Amanda</a></figcaption>
</figure>

<figure data-animation="horizontal" data-delay="600">
<a href="#"><img src="images/demo/team7.png" alt="" /></a>
<figcaption><a href="#">Remzi</a></figcaption>
</figure>

<a href="#">More About Us</a>
</div>
User avatar

GK User
Fri Feb 01, 2013 11:37 am
Reply with quote
Report this post
Thank you. Are there any other modules that we need to deactivate the rich text editor when using?
User avatar
Expert Boarder

Konrad M
Fri Feb 01, 2013 12:15 pm
Reply with quote
Report this post
All Custom HTML modules published on home page.
User avatar

GK User
Sat Feb 02, 2013 5:14 pm
Reply with quote
Report this post
Konrad M wrote:All Custom HTML modules published on home page.

Thank you.
User avatar
Expert Boarder


cron