Hi Guys,
I’ve had a look through the forum and I think the answer to this is no but I thought I’d make sure… Can I add custom icons to the icon boxes?
Thanks
I also want to add 2 different icons, but i know that the problem is that the icons are part of a typography.. is there a way to add other icons to the typo??
I’m able to put them in using flat HTML (this code is for the ‘icon right’ variation)
<div class="iconbox_content">
<div class="iconbox_icon"><img alt="" src="IMAGE URL" /></div>
<h3 class="iconbox_content_title">TITLE</h3>
TEXT
</div>
but it’s not ideal for a friendly CMS
Hi,
The icons are limited to the characters you have here: http://www.entypo.com/characters/
I think you already find a workaround to the problem. Good job.
Regards,
Ismael
Do anyone know the way i can do the same thing newenglish is doing but in iconlist instead of iconbox?
Hi Trap,
I’ll let Ismael check this is right but I should think it would be something like this:
<div class="avia-icon-list-container avia-builder-el-3 avia-builder-el-no-sibling ">
<ul class="avia-icon-list avia-icon-list-left avia_animate_when_almost_visible avia_start_animation">
<li class="avia_start_animation">
<div class="iconlist_icon avia-font-entypo-fontello">
<span class="iconlist-char">
<img src="YOUR ICON IMAGE URL" width="IMAGE WIDTH" height="IMAGE HEIGHT" alt="ALT NAME" />
</span>
</div>
<div class="iconlist_content_wrap">
<h4 class="iconlist_title">
<a href="#" title="YOUR TITLE">YOUR TITLE</a>
</h4>
<div class="iconlist_content">
<p>YOUR TEXT</p>
</div>
</div>
<div class="iconlist-timeline"></div>
</li>
</ul>
</div>
Where each item in your list begins with the <li>
tag and falls between the <ul>
and </ul>
tags