ContributionsMost RecentMost LikesSolutionsRe: Question about Community Category Component Forgot to respond to this. Thanks so much, this was tremendously helpful. Question about Community Category Component We would like to display the top level categories on our community homepage similar to this from Sephora: Does anyone know which component this is displaying? We thought it was the "Community Browser" but that doesn't display the number of posts within the category isn't just top level categories. Is this a custom component? Any help is much appreciated. SolvedRe: Specific Search Bar Format Component Help NeededThank you, Doug!Specific Search Bar Format Component Help Needed I'm looking for documentation/assistance in replicating the search bar format Sephora uses for their BeautyTalk community. I was told there are docs readily available. Our search bar just isn't cutting it, so any assitance is greatly appreciated. REST API working code examples? I am not the developer for our community, but am working with our engineering team to get what they need to implement REST API on our end. They are requesting working code examples to see the full implementation of REST API. Any help here? Thanks! Displaying Community Widgets Externally We are prepping for the hard launch of our community, and are exploring ways to display community widgets (showing recent discussions, posts, top kudoed authors, etc) in an external location (namely, our product). Where should I be looking to begin this process? Is it in studio? Do I need to include a developer? Thanks! Re: Adding Bullets to Custom Component Thanks for the tip, jc758! Unfortunately, adding "list-style-type:disc;" didn't adjust anything in the component. any other ideas? Editing Standard Components I want to edit two standard components, specifically Recent Posts and Recent Solutions, to only display the post, and not the board it came from. How do I do that, since I cannot locate the code? Adding Bullets to Custom Component We have a custom component that displays message subjects based on a specific tag, and I am trying incorporate a bullet point on each subject to clearly delineate between them within the component. I am unable to use the unordered list tag to do this, and am suspecting the <#list tag is preventing it. Here is the code, any ideas? <style type="text/css"> #RecentVideos li a { line-height: 18px; } </style> <div style="padding-left:10px"> <ul id="RecentVideos" > <#assign result=rest("/tagging/for/tags/text/training%20video/messages/recent?restapi.response_style=view&page_size=5")> <#list result.messages.message as message> <li> <a href="${message.@view_href}"> ${message.subject} </a> </li> </#list> </ul> </div> Re: Hide Logic for Components Behind a Login This is fantastic, thanks Claudius!