Hello,
I very often use the template seb_blog on my sites, I find very convenient with the setting of the number of items per column.
By cons there is a problem with responsive to overrider the number of elements in columns, depending on media.
Eg on large screens I put 3 columns, so I listed parameters "3 columns" : but on tablets portrait I want 2 columns -> in my custom.css, I need overrider the CSS of the div that forces the line break elements, all three elements, namely:
<div class="cck-clear"> </div>
.cck-clear {
clear: both;
}
by :
.class-custom-my-content .cck-clear {
clear: none;
}
But has no effect here !!
If anyone can help me please :)
thank you in advance,
Agathe.