2
Well what I want is simple. I need to add one div every 3 paragraphs. Remembering that these paragraphs will be in another div (in case it would be the content div).
It looks like this website, where the advertisement is located.
Would that be:
<div class="conteudo">
<p> </p>
<p> </p>
<p> </p>
<div class="anuncio">Div inserida</div>
<p> </p>
<p> </p>
<p> </p>
<div class="anuncio">Div inserida</div>
<p> </p>
</div>
Can you give an example of the HTML you refer to? Can you [Edit] the question and join the code here.
– Sergio
Well, I added the code.
– Helmesvs