The site is interested here is this line index.html:

<div class="tp-banner revslider-initialised tp-simpleresponsive hovered" id="revslider-258" style="height: 558px;"> 
Namely, in what part of the code is the height generated (in this case, height: 558px )?

    1 answer 1

    This is the revolutionslider. All the code is written in this script. js/revolutionslider/rs-plugin/js/custom.js

     revapi = jQuery('.tp-banner').revolution( { delay:9000, startwidth:1170, startheight: window.screen.height>768?792:558, hideThumbs:10, }); 

    In this line, depending on the starting position of the diva with this tp-banner class, the height of the slider is actually selected window.screen.height>768?792:558

    • I have already changed startheight. Just thought that the height of 558px is calculated by some other script. I do not understand why Chrome Dev Tools when choosing the resolution of 1920 * 1080 does not stretch the slider to 792px instead of 558px? - Yuri