# Hoe maak je de startpagina categorieën bevatten bij gebruik van een mobiele telefoon

**URL:** https://meta.discourse.org/t/how-to-make-the-homepage-contain-category-while-using-mobile-phone/233982
**Category:** Development
**Created:** [26 juli 2022 om 09:43 UTC](https://meta.discourse.org/t/how-to-make-the-homepage-contain-category-while-using-mobile-phone/233982 "2022-07-26T09:43:06Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [26 juli 2022 om 10:17 UTC](https://meta.discourse.org/t/how-to-make-the-homepage-contain-category-while-using-mobile-phone/233982/2 "2022-07-26T10:17:36Z")

</div>

Hello,

This is possible with CSS. You have to create a new component.

1. Go to `/admin/customize/themes/`  
Customize → Themes

2. Click the **Components** tab and then the Install button

3. On the popup window click Create new button and type the new component name.  

4. Click Create button.

5. The component created. Now select which theme(s) you want to activate it.  

6. Now click the Edit CSS/HTML button.  

7. Now click the **Mobile** tab and paste the below code to the **CSS** section.  

```scss
.category-breadcrumb.hidden {
  display: flex !important;
}

```

1. Click Save. Done! 🙂

 ![Screenshot 2022-07-26 at 12.13.42](https://global.discourse-cdn.com/meta/original/4X/3/7/2/3726a207028421b2a88a69ada23d489ffdc9ce9f.png)

---

_[View the full topic](https://meta.discourse.org/t/how-to-make-the-homepage-contain-category-while-using-mobile-phone/233982)._
