Ok I don't know what is wrong with this and where I messed it up.
My problem is: icons (rocket, badge, mouse, piggy...) isn't showing like it should be. Anyone can help me?
Thanks in advance.
<div class="gkFeatures gkPerspective">
<a href="#" class="gkRocket" data-animation="flip" data-delay="0"><span>Rocket</span>Innovative Design</a>
<a href="#" class="gkBadge" data-animation="flip" data-delay="150"><span>Badge</span>Award-winning Agency</a>
<a href="#" class="gkMouse" data-animation="flip" data-delay="300"><span>Mouse</span>Your ideas, imagination</a>
<a href="#" class="gkPiggy" data-animation="flip" data-delay="450"><span>Piggy</span>Save Your Time & Money</a>
</div>
<a href="#">View Full Features</a>
<div class="gkFeatures gkPerspective">
<a class="gkRocket loaded" data-delay="0" data-animation="flip" href="#">RocketInnovative Design</a>
<a class="gkBadge loaded" data-delay="150" data-animation="flip" href="#">BadgeAward-winning Agency</a>
<a class="gkMouse loaded" data-delay="300" data-animation="flip" href="#">MouseYour ideas, imagination</a>
<a class="gkPiggy loaded" data-delay="450" data-animation="flip" href="#">PiggySave Your Time & Money</a>
</div>
<div class="gkFeatures gkPerspective">
<a data-delay="0" data-animation="flip" class="gkRocket loaded" href="#"><span>Rocket</span>Innovative Design</a>
<a data-delay="150" data-animation="flip" class="gkBadge loaded" href="#"><span>Badge</span>Award-winning Agency</a>
<a data-delay="300" data-animation="flip" class="gkMouse loaded" href="#"><span>Mouse</span>Your ideas, imagination</a>
<a data-delay="450" data-animation="flip" class="gkPiggy loaded" href="#"><span>Piggy</span>Save Your Time & Money</a>
</div>
teitbite wrote:Hi
Ok. I've answered in a copy of this thread, so please ignore it and keep the conversation here.
Your code looks like this:
- Code: Select all
<div class="gkFeatures gkPerspective">
<a class="gkRocket loaded" data-delay="0" data-animation="flip" href="#">RocketInnovative Design</a>
<a class="gkBadge loaded" data-delay="150" data-animation="flip" href="#">BadgeAward-winning Agency</a>
<a class="gkMouse loaded" data-delay="300" data-animation="flip" href="#">MouseYour ideas, imagination</a>
<a class="gkPiggy loaded" data-delay="450" data-animation="flip" href="#">PiggySave Your Time & Money</a>
</div>
comparing there is a <span></span> missing. Please amke it as close as possible to the orginal:
- Code: Select all
<div class="gkFeatures gkPerspective">
<a data-delay="0" data-animation="flip" class="gkRocket loaded" href="#"><span>Rocket</span>Innovative Design</a>
<a data-delay="150" data-animation="flip" class="gkBadge loaded" href="#"><span>Badge</span>Award-winning Agency</a>
<a data-delay="300" data-animation="flip" class="gkMouse loaded" href="#"><span>Mouse</span>Your ideas, imagination</a>
<a data-delay="450" data-animation="flip" class="gkPiggy loaded" href="#"><span>Piggy</span>Save Your Time & Money</a>
</div>
You may need to disable using editor while doing that. Some editors are removing html5 code.
#gkUserArea {
display: none;
}
.gkNewicon > span {
background-image: url("path_to_newicon_image_goes_here");
}
<a class="gkNewicon href="#"><span>New icon</span>Innovative Design</a>