Article Anywhere in responsive flexbox messes up...

Search
Other Bug Reports questions
Forum

Article Anywhere in responsive flexbox messes up HTML output

Gábor Petri's Avatar Gábor Petri
Hi Peter,

I used this code in a custom module to display articles in a responsive 3-column flexbox:
<div class="latest-periodicals">
<div class="container-left">{articles category="evangelikus-elet" featured="true"}
<h4><strong>[link][title][/link]</strong></h4>
<p>[image-intro]</p>
<p>[introtext]</p>
<p>[readmore text="Bővebben"]{/articles}</p>
</div>
<div class="container-center">{articles category="lelkipasztor" featured="true"}
<h4><strong>[link][title][/link]</strong></h4>
<p>[image-intro]</p>
<p>[introtext]</p>
<p>[readmore text="Bővebben"]{/articles}</p>
</div>
<div class="container-right">{articles category="credo" featured="true"}
<h4><strong>[link][title][/link]</strong></h4>
<p>[image-intro]</p>
<p>[introtext]</p>
<p>[readmore text="Bővebben"]{/articles}</p>
</div>
</div>

The issue can be seen on this test site:

lutherkiado.bitvadasz.hu/

The title of the module is "Lapajánló".
Thank you.

Best regards
Gabor
Peter van Westen's Avatar Peter van Westen ADMIN
Place the {article} tags and closing {/articles} tags on their own line, preferably inside their own <p> tags:
..
<div class="container-left">
   <p>{articles category="evangelikus-elet" featured="true"}</p>
   <h4><strong>[link][title][/link]</strong></h4>
   <p>[image-intro]</p>
   <p>[introtext]</p>
   <p>[readmore text="Bővebben"]</p>
   <p>{/articles}</p>
</div>
...
Please post a rating at the Joomla! Extensions Directory
You can only post on this forum if you log in