A reddit-ish theme for Discourse

I think this was solved in

2 Likes

I’ve made great progress (: now how can i show the custom-right-sidebar on the homepage here too?

If I can show that sidebar on my topic page, I’ll be happy :partying_face:

2 Likes

After activating a theme (without any components), the topic list overlaps with the right sidebar. This issue persists even in safe mode. How can I resolve this?

I’m unable to reproduce this, which browser are you using? is Discourse up-to-date?

Hello,

Love this theme but there is a little problem for mobile,
there is no reply button for mobile, is it possible to have a reply button similar to create a new topic button when browsing categories?

1 Like

I see what you mean. No reply to topic. Only comment reply.

The issue was resolved by activating the Full Width component. However, there’s now a large gap on the right side. Is there a way to adjust it so that both sides have equal spacing?

I noticed your setup looks great and aligns with what I’m aiming for. If you’re comfortable with it, would you be open to sharing some of your configuration settings?

unfortunately they don’t share much advice for the customization we need. it took me 1 week to get this consistent design. whereas theme developers could have offered this skin as an alternative.

Anyway…

I disabled the full-width component. and added these as custom css.

#main-outlet-wrapper {
  display: flex;
  justify-content: space-between;
}
.sidebar-wrapper,
#main-outlet,
.custom-right-sidebar {
  flex: 1;
  box-sizing: border-box;
}
.sidebar-wrapper,.custom-right-sidebar{max-width:280px;}

@media (max-width: 768px) {
  #main-outlet-wrapper {
    flex-direction: column;
  }
}
body[class*=user-] .custom-tag-banner, body[class*=user-] 
.custom-category-banner, body[class*=user-] 
.custom-right-sidebar, body.archetype-regular 
.custom-tag-banner, body.archetype-regular 
.custom-category-banner, body.archetype-regular 
.custom-right-sidebar {
    display: flex;
}


I hope it helps. I will reply when you send me a message if necessary.

Thanks for sharing your CSS! I appreciate you taking the time, especially since it took you a week to get it working.