FRUSTRATED with the Plugin's Tiny Font Sizes
Hi, when the plugin is used, all my pages and posts have very smaller font size. And the plugin's native font size also looks smaller. This is very inappropriate for our eLearning sites. Because of the plugin, the normal 16px/17px paragraph font size appears as 13px/14px, which is actually not suitable font size from UX perspective for our community elearning users. Is there any official css to make the font size appear exactly as 17px or to inherit my theme's paragraph font size as 17px.
Custom CSS
With FluentSnippets you can add custom CSS to the portal by using the following code:
add_action('fluent_community/portal_head', function() {
?>
/* Your custom CSS here */
<?php
});
RaduΒ could you kindly provide some custom css that would work as an example. Thanks a lot.
Binay GauchanΒ a simpler way is to go to the portal "Settings" (bottom left corner) > Customizations > Custom CSS (bottom of the page), and in that field add something like this:
.feed_md_content p {
margin-bottom: 1rem;
line-height: 1.3rem;
font-size: 17px;
}
Binay Gauchan,Β which plugin are you using? Sorry if I should have known; I am new here.
I had a similar issue and found the solution. I am using ACSS a css framework that set the root font size at 62.5%. I set it at 100% in the plugin, then all was as it should be