Hello!
I am trying to put this code (grabbed from Legenda documentation) in footer column by using text block and following code
<div class="custom-info-block a-left"><span>Follow Us:</span>
<a href="http://www.taktika.lv"><i class="icon-youtube"> </i></a>
<a href="http://www.taktika.lv"><i class="icon-twitter"> </i></a>
<a href="http://www.taktika.lv"><i class="icon-facebook"> </i></a>
<a href="http://www.taktika.lv"><i class="icon-rss"> </i></a></div>
Text editor doesnt like space between <i></i> tag so it changes it to this
<div class="custom-info-block a-left">Follow Us:
<i class="icon-youtube"> </i>
<i class="icon-twitter"> </i>
<i class="icon-facebook"> </i>
<i class="icon-rss"> </i></div>
it drops off permalinks and thus are displayed without certain css rules. Is there a workaround this or I have to start from the scratch there?