Circle Code Snippet Library

Watch this video to see how to use Circle code snippets

Background colors

Community switcher

Members

Hide Members counts:

<style>

/* Hide topic and member counts in space header */
.standard-layout .main__header .header__nav .nav-link__count {
   display: none;
}

/* Hide member counts in space group cards */
.space-card__members {
   display: none;
}

/* Increase margin (space) between space title and "Leave/Join space" button on Space Group page */
.space-card__title {
   margin-bottom: 20px;
}

</style>

Example screenshot:

Left Side Panel

Sign-up / Onboarding

Hide "Sign Up" buttons and links:

<style>

/* Hide "Sign-Up" button from non-members in large breakpoints (desktop view) */
.is-signed-out .user-join .btn-primary {
   display: none;
}

/* Hide "Sign-Up" link from dropdown in small break breakpoints (mobile and tablet) */
.is-signed-out .dropdown-menu__inside li:nth-child(2) {
   display: none;
}

/* Hide "Don't have an account? Sign up" link in sign up page */
.is-signed-out .center-layout .center-container .bottom-callout.mt-8 {
   display:none;
}

/* Hide "Sign-Up" button in gated "Post a Comment" section */
.is-signed-out .gated-post--standard-layout .btn-primary {
   display: none;
}

</style>

Example screenshot: