# Which browser loads the correct mobile display?

**URL:** https://meta.discourse.org/t/which-browser-loads-the-correct-mobile-display/397891
**Category:** Support
**Created:** [March 7, 2026, 10:28pm UTC](https://meta.discourse.org/t/which-browser-loads-the-correct-mobile-display/397891 "2026-03-07T22:28:39Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![hipp0](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hipp0/32/537433_2.png) [@hipp0](https://meta.discourse.org/u/hipp0)
#### Post date: [March 8, 2026, 6:34am UTC](https://meta.discourse.org/t/which-browser-loads-the-correct-mobile-display/397891/6 "2026-03-08T06:34:10Z")

</div>

I managed to get it to display the Mobile view on Chrome, still not able to get it to display mobile on Firefox, Edge, or Brave browser.

Do I need Viewport break points in all my mobile code? Do I need to place it in the Mobile section? Most of my mobile CSS is just color changes, header icons, and sidebar width, emoji/font sizes. So doesn’t seem like I need any specific viewport settings.

 ![image](https://global.discourse-cdn.com/meta/original/4X/b/f/5/bf58f9b7de9b3c45000b7c8ffa9a392cb944f79c.png)

I was able to fix the code I needed:

```plaintext
/* ==========================================================================
   MOBILE DROPDOWN MENU - ACTIVE STATE
   ========================================================================== */

/* 1. Force the active link text to black */
.d-modal__body .dropdown-menu li.active a,
.d-modal__body .dropdown-menu li.active {
    color: #000000 !important;
}

/* 2. Touch-specific feedback (Discourse Standard) */
html.discourse-touch {
    /* Turn text black while the finger is pressing down */
    .d-modal__body .dropdown-menu li a:active {
        color: #000000 !important;
    }

}

/* 3. Ensure other nav items follow the rule */
.dropdown-menu li a {
    transition: color 0.1s ease;
}

```

I had some @media css queries that were messing up Brave browser on mobile loading correctly it seems.

---

_[View the full topic](https://meta.discourse.org/t/which-browser-loads-the-correct-mobile-display/397891)._
