Hi,
Thanks for contacting us and choosing our product!
In this case that’s seem you are editing video category (archive video page).
We use Isotope for this layout.
You can change it in: wp-content/plugins/haru-vidi/assets/js then open file haru-vidi.js
You can find function videoLayoutIsotope on line 4401 and change the code here as this tutorial to make it RTL:
https://prnt.sc/xbrlre
videoLayoutIsotope: function() {
var $layout_wrap = $('.layout-wrap');
if ( $layout_wrap.length > 0 ) {
$layout_wrap.isotope({
itemSelector: 'article',
isOriginLeft: false,
layoutMode: 'fitRows'
});
$layout_wrap.imagesLoaded( function() {
setTimeout(function() {
$layout_wrap.isotope('layout');
}, 300);
$layout_wrap.addClass('isotope-loaded');
});
}
},
and add this CSS code:
.layout-wrap .grid-item
{
-webkit-transition-property: right, top, -webkit-transform, opacity;
-moz-transition-property: right, top, -moz-transform, opacity;
-ms-transition-property: right, top, -ms-transform, opacity;
-o-transition-property: right, top, -o-transform, opacity;
transition-property: right, top, transform, opacity;
}
Reference: https://stackoverflow.com/questions/24260603/jquery-isotope-rtl
Hope this helps!
****
Regards,
HaruTheme