Home › Forums › Support › change background when mobile menu is opened This topic has 3 replies, 2 voices, and was last updated 3 years, 6 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 28, 2023 at 7:36 am #2511980 Yannick Hello guys, I’m working on a project where i have a hamburger menu that’s active when the screen is below 1028px. I’ve managed to change some things in css however not exactly how i want it. Right now it looks like this : website right now But when the hamburger menu is opened i would like to have the background over the whole screen of the user. How i want it to be I tried so hard with css but i couldnt manage it hope you guys can help 🙂 January 28, 2023 at 10:00 am #2512238 DavidStaff Customer Support Hi there, to keep the Header visible then you could use some CSS to create a pseudo element overlay: .mobile-menu-open .header-wrap:before { content: ''; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: #323232; } This will appear behind the site header and fill the entire screen. January 29, 2023 at 6:15 am #2512885 Yannick Hey man thats what i needed. Thankyou David! January 29, 2023 at 6:39 am #2512906 DavidStaff Customer Support You’re welcome Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In