Skip to main content

Right-to-left

I've started experimenting with the plugin in RTL mode. I just added a little CSS to make the body RTL. The only problem I see as of now is that the popup that appears when clicking the profile avatar does not change it's direction (see attached screenshot).

Right-to-left

Assaf Manor

So there is an easy fix to whoever wants to run RTL without waiting update. Add this PHP snippets that adds a CSS snippet:

add_action('fluent_community/portal_head', function() {
?>
/* Add your custom CSS here */
body {
direction:rtl;
}
.fcom_profile_sub_menu {
left:0;
}
\<?php
});

Assaf Manor

BTW Shahjahan Jewel a feature that will add the ability to add Code Snippets (and math) easily, and with a nice design, would be awesome.