Answer the question
In order to leave comments, you need to log in
How to implement scrolling slider on OWL?
There is a cool gallery
https://owlcarousel2.github.io/OwlCarousel2/demos/...
Are there examples of OWL implementation with such a thing;
jqueryui.com/slider
As an option, I will redo it:
https://owlcarousel2.github.io/OwlCarousel2/demos/...
Answer the question
In order to leave comments, you need to log in
Here you will not need the entire bootstrap, but only its grid (I will show it on the example of a 12-column grid). There can be a lot of implementations, but here is what I did:
<div class="logo col-md-3"></div>
<nav class="col-md-9">
<ul class="menu col-md-12">
<li class="col-md-3">
БУБУБУ
</li>
<li class="col-md-3">
БУБУБУ
</li>
<li class="col-md-3">
БУБУБУ
</li>
<li class="col-md-3">
БУБУБУ
</li>
<li class="col-md-3">
БУБУБУ
</li>
<li class="col-md-3">
БУБУБУ
</li>
</ul>
</nav>
.menu {
height: 60px;
background: #eee;
color: black;
}
.menu li {
display: inline-block;
padding: 5px 0;
list-style-type: circle;
}
in this style
<div class="row">
<div class="col-md-4">
<img src="" class="logo" alt="">
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-4">
<ul>
<li><label for=""></label><input type="text"></li>
<li><label for=""></label><input type="text"></li>
</ul>
</div>
<div class="col-md-4">
<ul>
<li><label for=""></label><input type="text"></li>
<li><label for=""></label><input type="text"></li>
</ul>
</div>
<div class="col-md-4">
<ul>
<li><label for=""></label><input type="text"></li>
<li><label for=""></label><input type="text"></li>
</ul>
</div>
</div>
</div>
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question