Articles > Making Some Space

Making Some Space

wider

Posted in:
Tagged with:

I spend most of my time on my desktop (positively glued to it) and one minor layout thing I prefer on Facebook compared to Fluent Community is the amount of screen width used.

While the feed is the same width, the sidebars are pushed to the edges to open up the screen more.

teh Facebooks

By adding a little CSS to the community settings:

.el-main {
	display: grid;
}

.feed_layout .feeds.fcom_single_layout.fcom_max_layout .fhr_content_layout_body {
    max-width: 100%;
}

.fcom_feed_box {
    justify-self: center;
    width: min(680px, 100%);
}

We can go from this…

…to this…

FacebookBlueskyLinkedInEmail
wider

Posted in:
Tagged with:

Recent Articles