I would like to add an image background to css class row feature-dark,
But the php block structure repeats the class row-feature-dark, same if I add a suffix for the module in the position features-intro.
consequence: the background-image repeat in the two block like following:
<div row feature-dark>
image
<div row feature-dark>image</div>
</div>
The class repeats on the following structure
<div class=”t3-module row-feature row-feature-dark ” id=”Mod104″>
<div class=”container”></div>
<div class=”row-feature-ct”></div>
<div class=”category-module category-carousel row-feature-dark“></div>
</div>
How can I remove the second recall for row-feature-dark in the php file?
Thanks in advance !