Adjust Mobile Layout for Video Section

I wanted to point out that in the mobile view, the text is still appearing beside the video. I would like the layout to be adjusted only for mobile view so that the video appears first, and the text is shown below the video.

Hi @Adesh1

You can do that by adding this code to Custom CSS of that section

@media (max-width: 749px) {
.flexible-layout { display: flex; }
}

This code should go to the “Custom CSS” setting of this section:

@media (max-width:480px){
  .flexible-layout {
    display: block;
  }
}

Thank you