feefee1 Posted March 29, 2021 Share Posted March 29, 2021 Site URL: https://daisy-tarpon-72er.squarespace.com/portfolio Can anyone help? I'm trying to block the footer from the mobile site? tried: /* remove desktop footer from mobile */ @media screen and (max-width:640px) { #block_60619d0a5517c019d3727c0c-id { display: none !important; } } tried: /* remove desktop footer from mobile */ @media screen and (max-width:640px) { #block_60619d0a5517c019d3727c0c { display: none !important; } } tried: /* remove desktop footer from mobile */ @media screen and (max-width:640px) { #block-60619d0a5517c019d3727c0c { display: none !important; } } None of these work and running out of ideas... PW: Help123 Thanks Link to comment
feefee1 Posted March 29, 2021 Author Share Posted March 29, 2021 Worked it out... thanks /* remove desktop footer from mobile */ @media screen and (max-width:640px) { section[data-section-id="60619d0a5517c019d3727c0c"] { display: none !important; } } Link to comment
tuanphan Posted March 31, 2021 Share Posted March 31, 2021 You can target footer id /* hide footer mobile */ @media screen and (max-width:767px) { footer.sections { display: none !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
feefee1 Posted March 31, 2021 Author Share Posted March 31, 2021 5 hours ago, tuanphan said: /* hide footer mobile */ @media screen and (max-width:767px) { footer.sections { display: none !important; } } Thanks @tuanphan. I have swapped my code for yours! Just wondering why on mobile, you see another version of the menu popping up when you click between pages? It's like a ghost menu but I can't screenshot it as it disappears too quickly. Could you possibly help with that? Thanks Link to comment
feefee1 Posted March 31, 2021 Author Share Posted March 31, 2021 Actually it appears when you click the burger menu from on to off - not when you go from page to page? Link to comment
tuanphan Posted April 5, 2021 Share Posted April 5, 2021 On 3/31/2021 at 3:15 PM, feefee1 said: Actually it appears when you click the burger menu from on to off - not when you go from page to page? add this CSS to fix .header-menu.header-menu--folder-list { left: 55% !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
feefee1 Posted April 6, 2021 Author Share Posted April 6, 2021 Sorry @tuanphan but that hasn’t worked - you can still see the menu on the left when you click the burger menu off? As I mentioned, it looks like a ghost menu ....pops up when you click the x on the burger menu on mobile .... it’s visible in desktop mode too .... need a code to remove menu when you switch off the burger menu ....? Thanks Link to comment
feefee1 Posted April 8, 2021 Author Share Posted April 8, 2021 Sorted it now. Thanks anyway 👍 Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.