Home › Forums › Support › Css to hide background? This topic has 7 replies, 3 voices, and was last updated 4 years, 5 months ago by David. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts December 20, 2018 at 8:33 am #762231 Esteban Hello! I am working on a new website. I work with Elementor and Generate Press. I want to know if there is any CSS to hide background on mobile an Tablet ? I try this but it doesnt work: @media only screen and (max-width: 600px) { body { background-image:none; } } December 20, 2018 at 8:40 am #762236 LeoStaff Customer Support Hi there, There isn’t a body background image added from what I can tell. Perhaps you are referring to something that’s added from Elementor? If so you will have to check with their support. Maybe there is a setting within their plugin that can do this for you. Let me know if I’m missing something ๐ December 20, 2018 at 10:34 am #762329 Esteban Thanks Leo for your answer. The background is added from elementor. They told me to duplicate it and create 1 for desktop and 1 for Mobile. I was wondering if there is any other possibility. Thanks December 20, 2018 at 1:33 pm #762424 DavidStaff Customer Support Hi there, if you want to remove the background image from the very top section then select the Section > Advanced > CSS classes and add this class: no-mobile-background Then add this CSS to your style sheet or additional CSS: @media (max-width: 767px) { .no-mobile-background { background-image: none !important; } } You can re-use that class on any section you want to remove the background image from. December 21, 2018 at 7:34 am #763050 Esteban Hi David, Thanks for the answer. I try what you sent me but is not working. Here are the images: https://d.pr/free/i/edQozr https://d.pr/free/i/Pr5ZKg December 21, 2018 at 7:44 am #763061 DavidStaff Customer Support I updated the code above to give the property some importance. December 21, 2018 at 10:52 am #763204 Esteban Thanks a lot! It works ๐ December 21, 2018 at 11:46 am #763236 DavidStaff Customer Support You’re welcome. Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In