I've been attempting to create a unique image slider using bxslider. My goal is to have a 2-row slider with 5 images displayed in each row. However, I'm encountering difficulties when I try to integrate the HTML, CSS, and JavaScript code.
Despite my efforts, I haven't been successful in positioning the slider on the left side of the page and aligning text on the right side. The slider is displaying all images in a single column rather than two rows as intended.
$(document).ready(function(){
$('.wraper').bxSlider({
minSlides: 1,
maxSlides: 5,
mode: 'fade',
adaptiveHeight: true
});
});