Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Adriano Faria Posted April 29, 2023 Posted April 29, 2023 Probably not a bug and it happens due to the buttons that shows up only to logged in users but it would look better if the blue bar had the same height for guests and registered users. Mobile phone. Default unmodified theme with no 3rd-party resource extending this specific area. Thank you.
Solution Adlago Posted April 29, 2023 Solution Posted April 29, 2023 This post was recognized by Marc! Adlago was awarded the badge 'Helpful' and 5 points. 4 hours ago, Adriano Faria said: Probably not a bug and it happens due to the buttons that shows up only to logged in users but it would look better if the blue bar had the same height for guests and registered users. Mobile phone. Default unmodified theme with no 3rd-party resource extending this specific area. Thank you. Only one simple rule in code is missing. Or - now a code that defines this blue bar is @media screen and (max-width: 979px) ( #elMobileNav { background: rgb( var(--theme-main_nav) ); color: rgb( var(--theme-main_nav_font) ); position: relative; display: flex; justify-content: flex-end; align-items: center; list-style: none; margin: 0; padding: 0;} } and as it is changed by adding height, it should be @media screen and (max-width: 979px){ #elMobileNav { background: rgb( var(--theme-main_nav) ); color: rgb( var(--theme-main_nav_font) ); position: relative; display: flex; justify-content: flex-end; align-items: center; list-style: none; margin: 0; padding: 0; height: 50px;} } Or just add in Custom css @media screen and (max-width: 979px){ #elMobileNav {height: 50px;} } Adriano Faria 1
Recommended Posts