Hi, you'll have to edit your NAML code.
go:
1- At the bottom of your app->See how NAML generates this page.
2- At the engine wheel -> "Search for macro" .
3- Macro by name -> search for "classic_row" .
4 - classic_row -> "override this macro" .
5- replace all your code with this:
<override_macro name="classic_row" requires="node_list">
<n.if.has_small_avatar>
<then.current_node.classic_row_with_small_avatar/>
<else.current_node.classic_row_with_big_avatar/>
</n.if.has_small_avatar>
<n.if.is_last_element>
<then.current_node.mark_as_visited/>
</n.if.is_last_element>
<n.if>
<condition.both>
<condition1.not.is_blog_topic/>
<condition2>
<n.int. i="[n.current_index/]">
<n.is_less_than i="3"/>
</n.int.>
</condition2>
</condition.both>
<then>
<n.show_ads class="shaded-bg-color rounded" style="margin:0 0 1em;padding:.5em"/>
</then>
</n.if>
</override_macro>
6 - Save