XF 2.3 Layout Color Change for Media Single View Page

You're switching between 2 themes (one with the white background header and the other with the blue)
Admin Panel -> Setup -> Options -> XenForo Media Gallery -> Override default style
 
Add this to your style's extra.less
Admin Panel -> Appearance -> Styles & templates -> Styles -> Choose and select Templates -> extra.less
Code:
@media (max-width: @xf-responsiveMedium) { 
    .p-nav {
        color: #000;
        background: #fff;
    }
}
Change the background #fff and the text color #000 to whatever you like.
 
Back
Top Bottom