Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • As I wrote to other thread …

    I think problem is in css news.css, where are missing parts for “col-0” which had in v2.7 name “no-column”.

    If I add to “Own CSS & JS” some missing css styles :

    .col-0 .simple-news-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 0 1em 0;
    }
    
    .col-0 .simple-news-img-con {
        -webkit-box-flex: 1;
            -ms-flex: 1 20%;
                flex: 1 20%;
        max-width: 20%;
    }
    
    .col-0 .simple-news-text-con {
        -webkit-box-flex: 1;
            -ms-flex: 1 75%;
                flex: 1 75%;
        max-width: 75%;
    }
    
    .col-0 .simple-news-item:last-child {
        border: none;
        margin: 0;
    }

    It works for me as with previous version.

    Thread Starter rpatek

    (@rpatek)

    Sorry for late answer, short on time.

    I think problem is in css news.css, where are missing parts for “col-0” which had in v2.7 name “no-column”.

    If I add it to css file it works like in 2.7

Viewing 2 replies - 1 through 2 (of 2 total)