I have the following design
and as you can see the calendar of DatePicker it covers the bar that I have at the top.
Calendar function code
$(document).ready(function(){
var date_input=$('input[name="date_inicio"]'); //our date input has the name "date"
var container=$('.bootstrap-iso form').length>0 ? $('.bootstrap-iso form').parent() : "body";
date_input.datepicker({
format: 'yyyy/mm/dd',
container: container,
todayHighlight: true,
autoclose: true,
})
})
They could help me to be complete.
Thank you.