Buy me a coffee

How to show Video Page 2 Columns on Mobile

You can use these CSS code to do this.

#1. All Video Pages

@media screen and (max-width:767px) {
.lessons.collection-content-wrapper .list-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    display: grid !important;
    grid-gap: 10px 10px !important;
}
}

How To Show Video Page 2 Columns On Mobile 01 Min

#2. Specific Video Page

First, you need to find Page ID. Use this tool.

In my example, we will have:

  • #collection-669926b46c2b452c0a26edbf

How To Show Video Page 2 Columns On Mobile 02 Min

Next, use this CSS code

@media screen and (max-width:767px) {
#collection-669926b46c2b452c0a26edbf .lessons.collection-content-wrapper .list-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    display: grid !important;
    grid-gap: 10px 10px !important;
}}

How To Show Video Page 2 Columns On Mobile 03 Min

#3. Result

How To Show Video Page 2 Columns On Mobile 04 Min