Home Forums WoodMart support forum Problem loading the pages Reply To: Problem loading the pages

#58907

Artem Temos
Keymaster

Hi,

This issue comes with Revolution Slider and there is no option to fix it automatically. But as a workaround, you can apply a simple CSS fix as we did on our demo.

1. Add the following CSS class woodmart-main-slider to your slider as shown on the screenshot http://prntscr.com/jlgxnx

2. Put this code snippet to the slider custom CSS area http://prntscr.com/jlgydq

#woodmart-main-slider_wrapper {
    height: 495px;
}
@media (max-width: 1024px) {
    
#woodmart-main-slider_wrapper {
  height:476px;
}
}
      
@media (max-width: 778px) {
    
#woodmart-main-slider_wrapper {
  height:500px;
}
}
        
@media (max-width: 480px) {
    
#woodmart-main-slider_wrapper {
  height:600px;
}
}

Regards