How to change the video size on the page to more than 800px

Hi there, there is another question, I want to resize the video on the page to more than 800px, any suggestions?

Thank you so much.

Please check the picture, I want to change the size to the blue box, maybe 1000px

Please check the URL

https://www.lilygo.cc/blogs/news/a-quick-look-at-the-t-display-s3

Thank you so much.

Hi @Ajing .

I’m Richard Nguyen from PageFly- Free Landing Page Builder

You can go to Online store => themes => actions => edit code and add this code on file base.css

iframe{
height: 500px;
width: 1000px;
}

Hope this answer helps.

Best regards,

Richard | PageFly

Hi, thank you for your help, I added it but didn’t work

you can try this code to fix it

iframe{
 height: 500px !important; 
width: 1000px !important; 
}

I changed the code, but the same

can you help me add code to the top of the file.

Hello @Ajing
Go to Online store >> Edit code >> Assest >> base.css
Add this code below of the base.css
It’s work on both device desktop and mobile.

.article-template__content iframe {
width: 100% !important;
height: 630px !important;
}
@media(min-width: 280px) and (max-width: 767px){
.article-template__content iframe {
width: 100% !important;
height: 380px !important;
}
}

Oh, worked, thank you, but on mobile is not fine

Oh thank you so much, it worked!

If our solution are help you then please mark job as accepted.

1 Like