Such a problem:
I connected Owl-Carousel successfully to the site. I have it installed in the entire computer screen (w: 100%; h: 100%), but when I open the side menu and change the width of the owl, the size of .owl-stage and .owl-item remains unchanged because there is a fixed width (in pixels).
I noticed that the fixed width changes when opening the code inspector or when the browser's screen width changes -> i.e. the width is recalculated.
autowidth:true does not help (
You need some kind of рефрешер in js, but which did not reload the whole page, but simply forced Owl to recalculate the width
UPD : I found an approximate solution on the Internet - use refresh.owl.carousel
I wrote the code, but it works with 2 clicks:
$('.menu_hamburger').click(function(){ owl.trigger('refresh.owl.carousel'); }); 


