Skip to main content

How did you style your FC?

Does FC take on wp theme characteristics? If not then how did you style your FluentCommunity?

I have too say that Ross FCAย did a pretty fabulous job ๐Ÿ‘ styling his FC.

https://fluentcommunityaddons.com/portal/

Your feedback will be appreciated.

Thank you

Thomas Oates

I created a separate css file in my custom theme and added this code to my functions.php file. This way all the FC specific CSS is in one file which makes it easier to manage (to me).

    add_action( 'fluent_community/portal_head', 'theme_load_custom_fc_css' );
    function theme_load_custom_fc_css() {
        ?>
        <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/fcstyle.css" media="all">
        <?php
    }

Thomas Oates

Most of the custom CSS I'm using is to change the fonts, make the feed content full width, and hide some things.

Daniel Knabl

Thomas Oatesย would you mind sharing that as well? It would save some of us a lot of time figuring out all the selctors etc.

Thomas Oates

Daniel Knablย Yep, I can. Currently, the CSS file isn't well documented so let me document it first and then I'll share.

Gerard Godin

Thanks for sharing David Scurlockย , I didn't know about those add-ons and community. Very much appreciated.