The problem is caused by that you have applied display: table; on the DIV elements that have "home-image widget-area" classes, and also applied display: tabe-cell; on the inner section. Because of this, these elements are acting like tables, which means that they are adapting to the content inside them. Meanwhile the slider is trying to adjust itself to the parent element's width, and these two behaviors are cancelling each other out.
You will need to remove these special display attributes to fix this problem.
Hey Michael,
The problem is caused by that you have applied display: table; on the DIV elements that have "home-image widget-area" classes, and also applied display: tabe-cell; on the inner section.
Because of this, these elements are acting like tables, which means that they are adapting to the content inside them.
Meanwhile the slider is trying to adjust itself to the parent element's width, and these two behaviors are cancelling each other out.
You will need to remove these special display attributes to fix this problem.