Hi Sergiy!
Thanks for helping me!
I'm coding directly in web_resources.
My template has this code:
code
<div class="feed-item-actions-inner">
<li>
<a href="#">
<i class="zmdi zmdi-likes"></i>
<span>0</span>
</a>
</li>
<>
/code
But when I change the code to bellow, appears the "c15r: component facade not found" error.
code
<div class="feed-item-actions-inner">
<li>
<a href="#">
<i class="zmdi zmdi-likes"></i>
<div class="cell-wrapper">
<span name="n_likes_lb" id="feed_n_likes_lb" dsid="n_likes_lb" data-role="appery_label">0</span>
<>
</a>
</li>
<>
/code
I tried too to use only div as bellow but without success.
code
<div class="feed-item-actions-inner">
<li>
<a href="#">
<i class="zmdi zmdi-likes"></i>
<div class="cell-wrapper">
<div name="n_likes_lb" id="feed_n_likes_lb" dsid="n_likes_lb" data-role="appery_label">0<>
<>
</a>
</li>
<>
/code
As you said above, I tried to use in div the css attribute bellow but, again, without success
code
style="display: inline"
/code
Do you have any suggestion?