lisaxhearts Posted August 2, 2020 Share Posted August 2, 2020 Skye has a fixed, or sticky, header. It can't be disabled in Styles, so to have the header move with the rest of the page, I have to do something in CSS. I tried the following code - Quote .header-announcement-wrapper { position: absolute; } While this did solve the problem, it made mobile view a mess. Before the changed code, my site on mobile did not stick to the top and so it wasn't a problem. With this added code, it disables most of the header, leaving only the logo that sits on top of other content. Is there a way I can implement this code to only the desktop view so it doesn't affect mobile? Thanks, -Lisa Link to comment
tuanphan Posted August 2, 2020 Share Posted August 2, 2020 Edit your code @media screen and (min-width:641px) { .header-announcement-wrapper { position: absolute; } } 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
lisaxhearts Posted August 2, 2020 Author Share Posted August 2, 2020 You're amazing. Thank you so much. This has been making me crazy. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.