Video Padding Elimination

Hello,

I’m looking for a solution to remove padding on the video section, make it full size and remove margins on other sections?

This is the site, video is first at the top.
Theme is Debut.
Not opposed to changing the theme if need be.

https://www.sleeplessmindz.com/

Hi @SleeplessMindz

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file theme.css and add this code at the end of the file
.page-width {
    padding: 0 !important;
}

main#MainContent {
    padding-top: 0 !important;
}

iframe#Video-video_9xmni4 {
    width: 100% !important;
}

Result:

Best,

Liz