Trying to get rid of these spaces
http://borstch.eu/stuff/big_space.png
This code works when I enter it in Firebug, but not Quick CSS
.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
margin: 0 0 0px;
width: 100%;
}
Hi crewneck!
Try to put it in a media Query and adjust the width value:
@media only screen and (max-width: 989px) {
.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
margin: 0 0 0px !important;
width: 100%;
}
}
Best regards,
Günter
Beautiful! Thanks Günter