Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #395006

    http://borstch.eu/aptare4/

    Trying to get rid of these spaces

    http://borstch.eu/stuff/big_space.pnghttp://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%;
    }

    • This topic was modified 9 years, 9 months ago by crewneck.
    #395128

    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

    #395704

    Beautiful! Thanks Günter

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Get rid of big row spaces on mobile devices’ is closed to new replies.