On the homepage of http://www.shopifyexperte.de/ there are two flex-box modules, one under \"Kundenstimmen\" and one under \"Neueste Beiträge...\". The inner boxes are suppo
There are other solutions that work for me.
In the .row
container before
and after
are gets added with these properties:
row:before, .row:after {
content: " ";
display: table;
}
so setting up the display: none or display: inline
will solve the problem or setting up the content: none
will also solve it.
.row:before, .row:after {
display: none;
}
or
.row:before, .row:after {
display: inline;
}
or
.row:before, .row:after {
content: none
}