Enlarge Mp4 - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

Enlarge Mp4

massimo

massimo

SP Page Builder 4 years ago

hello, I use template spectrum, with video addons how can I enlarge an mp4 video?

thank you

0
10 Answers
massimo
massimo
Accepted Answer
4 years ago #11955

thank you

0
massimo
massimo
Accepted Answer
4 years ago #11402
0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #11464

Hi there!

Thanks for your query.

I could not find the video problem from the URL you shared.

Would you please redirect me to the problematic part to see the issue?

Best Regards

0
massimo
massimo
Accepted Answer
4 years ago #11474

how do i enlarge it? as in the example http://prnt.sc/10sdr1f

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #11497

I have checked your screenshot, but would you please give me a live link to the issue?

0
massimo
massimo
Accepted Answer
4 years ago #11581

how do i enlarge the 2 mp4 videos that are in the sides ?. I wish they were bigger. i have the same problem here too https://www.pozzatisoccorso.com/component/sppagebuilder/?view=page&id=11 you see the video is too small, I would like to make it bigger. in the adon video I can't find a way to zoom in, what can I do? thank you

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #11660

Hi there!

Sorry for the delayed response!

Would you please try the following code in your custom.css file:

.sppb-addon-video-local-source{
        height: auto;
}

Best Regards

0
massimo
massimo
Accepted Answer
4 years ago #11739

hello, it doesn't work I am attaching desktop and mobile images:

http://prnt.sc/10u6bpy

http://prnt.sc/10u6d4y

https://www.pozzatisoccorso.com/portfolio-lavori.html

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #11911

Hi,

You can use height 475px for desktop view I guess! Here you go:

.sppb-addon-video-local-source {
    height: 475px;
}

and for mobile you may use media query to get different height:

@media only screen and (max-width: 480px){
    .sppb-addon-video-local-source {
        position: inherit !important;
        height: 700px!important;
}
.sppb-addon-video .sppb-addon-video-local-video-wrap{
    padding-top: 0!important;
}
}

You can change the height values to fit your own need actually.

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #11962

You are welcome!

0