Viewing 1 replies (of 1 total)
  • Hi,

    You want to show 2 thumb images in single row? If so please note, it is based on device screen width. Please enable screen rotation and view the device horizontally. It will display two thumb images in a row. If you still want to adjust the size when viewing the device vertically, then open /wp-content/plugins/contus-video-gallery/css/style.min.css and find @media screen and (max-width: 600px). Here you can find the below code.

    .video-block:first-child {
    margin: 0 15px!important;
    }

    now replace with the following code.

    .video-block:first-child {
    margin: 0 11px 0 0 !important;
    }

    Now find the below code inside @media screen and (max-width: 600px)

    .video-block-container .video-block {
    margin: 0 15px!important;
    min-height: 145px;
    }

    and replace with the below code.

    .video-block-container .video-block {
    margin: 0 11px 0 5px!important;
    min-height: 145px;
    }

    Don’t modify outside of the following code @media screen and (max-width: 600px).

Viewing 1 replies (of 1 total)

The topic ‘Responsive problem.’ is closed to new replies.