Hi
I'm still not sure if I understand, but I'll try to explain how to change links and icons in "About" module. This module is a regular Custom HTML module, but all changes to it needs to be done in HTML mode or better when editor is disabled to avoid stripping code from it.
Here is a code for HTML:
- Code: Select all
<div class="gkTeam col4 animate_queue">
<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/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" data-gplus="https://plus.google.com/+gavickpro/posts" 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>
as You can see in this code You can set the url for fb/google/twitter so a link to read more can be replaced here.
Next step is an icon which can be overwritten via css by modification of this class loading awsome font char:
- Code: Select all
.gkTeamOverlay a[data-type="fb"]:before {
content: "";
}
the above is for fb, but rest will be similar.