<em>@aratype 320799 wrote:</em><blockquote>As you can see from the demo:
http://www.joomlart.com/demo/#joomla25-templates.joomlart.com/ja_wall
The site starts from the left side and we have “Hot” article in the top-left…
Now, for the RtL version, I need that the site starts from the right side and and the “Hot” article in the top-right…
Temp. RtL site: http://www.targamat.com/alam/
Thanking you in advance
Aratype</blockquote>
Hi Aratype,
Do you want to display items from right to left direction ? if that you can try as following
open the file of templatesja_walljswall.js look for this snap of code
// init masonry
$container.masonry({
itemSelector: item_selector,
isResizable: false,
columnWidth: function() { return $container.data (‘basewidth’)?$container.data (‘basewidth’):$(‘#base-blank-item’).width() },
});
you change it to
// init masonry
$container.masonry({
itemSelector: item_selector,
isResizable: false,
columnWidth: function() { return $container.data (‘basewidth’)?$container.data (‘basewidth’):$(‘#base-blank-item’).width() },
isRTL:1
});
let me know if it help !