steveb1471 Posted August 24, 2020 Share Posted August 24, 2020 Hi I am having some trouble with the positioning of my carousel and was wondering if anyone could give me some help All my images are 900px wide which is the with of "wrapper-main" I was under the impression as the carousel is within the div its position should be centralised. i cannot get it centred at all. Below is the HTLM Quote <main> <link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="owl.Carousel.min.css"> <link rel="stylesheet" type="text/css" href="owl.theme.default.min.css"> <div class="wrapper-main"> <section class="section-default"> <?php if (!isset($_SESSION['id'])) { echo '<p class="login-status">You are currently logged out, please log in to continue.</p>'; } else if (isset($_SESSION['id'])) { echo '<p class="login-status"></p>'; header ('Location: Dashboard.php'); } ?> </section> <section class="section-default1"> <div class="wrapper"> <div class="owl-carousel owl-theme"> <div class="item"><img src="banner-1t.jpg" alt="1"></div> <div class="item"><img src="banner-2t.jpg" alt="2"></div> <div class="item"><img src="banner-3t.jpg" alt="3"></div> <div class="item"><img src="banner-4t.jpg" alt="4"></div> </div> </section> </div> <script type="text/javascript" src="jquery-3.15.1.js"></script> <script type="text/javascript" src="owl.carousel.min.js"></script> <script type="text/javascript" src="jquery.js"></script> </main> below is the jquery.js i am using $('.owl-carousel').owlCarousel({ autowidth:true, dots:false, loop:true, margin:10, nav:false, pagination:false, autoplay: 10, centre:true, responsive:{ 0:{ items:2 }, 600:{ items:2 }, 1000:{ items:2 } } }) Could somebody help in getting this carousel centred in my page. Its not the images, they are fine. Its the actual carousel. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/311377-owl-carousel-positioning/ Share on other sites More sharing options...
maxxd Posted August 24, 2020 Share Posted August 24, 2020 (edited) 10 hours ago, steveb1471 said: centre:true, Try 'center'. Edited August 24, 2020 by maxxd Quote Link to comment https://forums.phpfreaks.com/topic/311377-owl-carousel-positioning/#findComment-1580931 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.